Patching 68K Software – SimpleText
tinkerdifferent.com
Patching 68K Software – SimpleText
1–10 of 19 posts
Re: Patching 68K Software – SimpleText
#2Re: Patching 68K Software – SimpleText
#3This is beautiful, but the real takeaway should be that even proprietary software you only have binaries for is still mutable. The computer runs the code you want it to run. We always need to maintain that and prevent scenarios where general purpose computers stop being the default.
Stepping through, line by line, editing the code and adding JMPs to get around the copy protection code after loading the magic numbers into the register...
Happy, happy times.
Re: Patching 68K Software – SimpleText
#4My recent pet peeve is that macOS doesn't seem to remember window sizes and locations properly. Things are certainly complicated by multi-monitor setups, but it seems like some sensible default behavior could be implemented.
I don't dislike the column browser, but I wish macOS would preserve/revive its spatial UI in both the Finder and document window positions.
Re: Patching 68K Software – SimpleText
#5This is beautiful, but the real takeaway should be that even proprietary software you only have binaries for is still mutable. The computer runs the code you want it to run. We always need to maintain that and prevent scenarios where general purpose computers stop being the default.
We were always doing this kind of thing on these platforms. This is how we used to hack copy protection out of games. Stepping through, line by line, editing the code and adding JMPs to get around the copy protection code after loading the magic numbers into the register... Happy, happy times.
Obviously this is nothing on things like V-MAX! and Rapidlok which even nowadays have variations that are tough to remaster.
Re: Patching 68K Software – SimpleText
#6This is beautiful, but the real takeaway should be that even proprietary software you only have binaries for is still mutable. The computer runs the code you want it to run. We always need to maintain that and prevent scenarios where general purpose computers stop being the default.
Re: Patching 68K Software – SimpleText
#7Re: Patching 68K Software – SimpleText
#8I thought option-resize was supposed to resize the default (new document) window? My recent pet peeve is that macOS doesn't seem to remember window sizes and locations properly. Things are certainly complicated by multi-monitor setups, but it seems like some sensible default behavior could be implemented. I don't dislike the column browser, but I wish macOS would preserve/revive its spatial UI in both the Finder and…
In some ways, the world has moved on as well. Spatial orientation worked really well when the number of files and folders we typically dealt with was fairly small in number. Now we tend to deal with huge numbers of files, most of which aren't even on our local computer. It's hard for me to imagine how a spatial system like that could be made to work with all of that. What would a "spatial Wikipedia" look like?
Re: Patching 68K Software – SimpleText
#9Re: Patching 68K Software – SimpleText
#10 opcode source, destination
which is the other way around from most contemporary ISA:s. So a line like move.l d0, -(a7)
will first decrement the value of register a7, then write the contents of register d0 to the resulting address (it's a "push" for a downwards-growing stack).Edit: added Wiki-linkage.
[1]: https://en.wikipedia.org/wiki/Motorola_68000#Instruction_set...