Skip to content

Commit 48d3983

Browse files
Remove more old stuff
1 parent f7f7b9d commit 48d3983

File tree

7 files changed

+4
-546
lines changed

7 files changed

+4
-546
lines changed

bugs/armCpu/armPartialyWorksAt4ByteAlignment.txt

Lines changed: 0 additions & 453 deletions
This file was deleted.

bugs/armCpu/notes.txt

Lines changed: 0 additions & 1 deletion
This file was deleted.

bugs/disassemblyNotes.txt

Lines changed: 0 additions & 87 deletions
This file was deleted.

bugs/unimplementedHardware.txt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,6 @@ PLLFSR has a hack that makes busy wait loops finish faster by toggling the CLK32
2626
should also not transfer data to SD card when MOSI, MISO or SPICLK1 are disabled
2727
port d data register INT* bits seem to have there data bits cleared when an edge triggered interrupt is cleared(according to MC68VZ328UM.pdf Page 10-15)
2828
sound plays too long when the category's menu is selected on the home screen and the pen is pressed and held in the middle of the screen(only happens there, other views of the same type don't have this issue)(effected by CPU speed, turning it up reduces the duration of the excess squeal)
29-
ARM CPU state isn't saved
3029
trying to beam anything will lock up the OS
3130

3231
Memory:

images/silkscreen320x120.png

-12.7 KB
Binary file not shown.

libretroBuildSystem/mu_libretro.info

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ categories = "Emulator"
77
systemname = "Palm OS"
88
license = "Non-commercial"
99
permissions = ""
10-
display_version = "v1.0.0"
10+
display_version = "v1.1.0"
1111
supports_no_game = "false"
1212
firmware_count = 1
1313
firmware0_desc = "bootloader-en-m515.rom (MC68VZ328 UART Bootloader)"

src/flx68000.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ void flx68000PcLongJump(uint32_t newPc){
1818
uint32_t dataBufferGuest;
1919
uint32_t windowSize;
2020

21-
switch(bankType[START_BANK(newPc)]){
21+
switch(dbvzBankType[DBVZ_START_BANK(newPc)]){
2222
case DBVZ_CHIP_A0_ROM:
2323
dataBufferHost = (uintptr_t)palmRom;
2424
dataBufferGuest = chips[DBVZ_CHIP_A0_ROM].start;
@@ -34,8 +34,8 @@ void flx68000PcLongJump(uint32_t newPc){
3434
case DBVZ_CHIP_REGISTERS:
3535
//needed for when EMU_NO_SAFETY is set and a function is run in the sandbox
3636
dataBufferHost = (uintptr_t)palmReg;
37-
dataBufferGuest = BANK_ADDRESS(START_BANK(newPc));
38-
windowSize = REG_SIZE;
37+
dataBufferGuest = DBVZ_BANK_ADDRESS(DBVZ_START_BANK(newPc));
38+
windowSize = DBVZ_REG_SIZE;
3939
break;
4040
}
4141

0 commit comments

Comments
 (0)