[HP35S] Disassembling ROM
|
02-22-2015, 07:21 PM
(This post was last modified: 02-22-2015 07:26 PM by Tugdual.)
Post: #7
|
|||
|
|||
RE: [HP35S] Disassembling ROM
Using IDA you rapidly accumulate a lot legit 6502 fragments and it doesn't even look like it was compiled from C which I found surprising.
The difficulty is the ROM paging to know how to segment the file and detect ROM changes. There is a specific BANK register address (apparently $0000) where you select a segment and then it would map 2 blocks of 16kB respectively in $4000 and $8000. I suspect that the ROM organization should be pretty much the same as for the 48g with basically a library by segment (I'm not an expert on 48g). You can find SPLB31A datasheets here There is a test ROM located in $C000-$C7FF (not sure if it is the something built in the processor) and then you can have another range from $C800-$FFFF for a custom ROM. So this is a 16kB area. If you open the 35s.sml file with a text editor, you find the settings of the emulator at the beginning of the file: Code: ;============================================================================== Now how is that organized? My best guess would be: Code: $C000 - $FFFF That's all I know at the moment. I wonder where the code is cold booting, possibly $C000, I wonder what registers are and how they work. |
|||
« Next Oldest | Next Newest »
|
Messages In This Thread |
[HP35S] Disassembling ROM - Tugdual - 02-21-2015, 12:30 PM
RE: [HP35S] Disassembling ROM - Tugdual - 02-22-2015, 10:26 AM
RE: [HP35S] Disassembling ROM - Dieter - 02-22-2015, 12:07 PM
RE: [HP35S] Disassembling ROM - Thomas Ritschel - 02-24-2015, 01:46 PM
RE: [HP35S] Disassembling ROM - matthiaspaul - 02-24-2015, 02:45 PM
RE: [HP35S] Disassembling ROM - Tugdual - 02-24-2015, 04:43 PM
RE: [HP35S] Disassembling ROM - Han - 02-24-2015, 04:56 PM
RE: [HP35S] Disassembling ROM - Tugdual - 02-24-2015, 06:48 PM
RE: [HP35S] Disassembling ROM - Tugdual - 02-22-2015, 02:43 PM
RE: [HP35S] Disassembling ROM - EdS2 - 02-22-2015, 03:30 PM
RE: [HP35S] Disassembling ROM - Thomas Ritschel - 02-22-2015, 06:32 PM
RE: [HP35S] Disassembling ROM - Tugdual - 02-22-2015 07:21 PM
RE: [HP35S] Disassembling ROM - Tim Wessman - 02-24-2015, 02:27 PM
|
User(s) browsing this thread: 1 Guest(s)