Does anyone have an ACI ROM merging file? Convenient to record to 28C64 instead of A3.A4
Anonymous
User login
Please support the defense of Ukraine.
Direct or via Unclutter App
Active forum topics
Recent content
Navigation
No Ads.
No Trackers.
No Social Media.
All Content Locally Hosted.
Built on Free Software.
We have complied with zero government requests for information.
Would be pretty easy to write one in Perl or something.
Hello, can you provide one?thank you very much
How about if I just post the combined binary?
wozaci.bin_.zip
It was made from a hex dump convered to binary.
Thank you very much for the files you provide. Thanks
In case anyone ever needs it, here is the hex dump that was converted from:
wozaci.txt
You can convert any file like this to binary using the
xxd
command-line tool with its -r option.xxd -c8 -r -seek -0xC100 wozaci.txt wozaci.bin
The -seek option compensates for the code having been assembled at $C100 in the Apple's address space (line numbers begin at C100).
The -c8 option is required because there are only 8 octets per line (instead of the default 16).
Converting to or from 4-bit wide PROM images does require some simple programming.