Difference between revisions of "User:Cormacj"
From CPCWiki - THE Amstrad CPC encyclopedia!
(4 intermediate revisions by the same user not shown) | |||
Line 2: | Line 2: | ||
When I was at university someone one asked "Don't you do stuff in Amstrad Action" which was the weirdest bit of fanboying I ever had. | When I was at university someone one asked "Don't you do stuff in Amstrad Action" which was the weirdest bit of fanboying I ever had. | ||
− | |||
− | |||
Track what I'm working on at https://github.com/cormacj | Track what I'm working on at https://github.com/cormacj | ||
+ | |||
+ | Follow me on Mastadon at: https://hachyderm.io/@cormac | ||
+ | |||
+ | ===== cpcxfs headers ===== | ||
+ | cpcxfs will add headers when you are copying files from .DSK images. Use this linux command to correct that: | ||
+ | |||
+ | |||
+ | dd bs=1 skip=128 if=header.rom of=noheader.rom | ||
+ | |||
+ | |||
+ | ===== useful links ===== | ||
+ | |||
+ | [https://github.com/cormacj/AmstradCPCRomHacks A collection of scripts for working with Amstrad CPC ROMs] | ||
+ | |||
+ | [https://github.com/cormacj/rodos-disassembly/tree/main My RODOS work] | ||
+ | |||
+ | [https://wikiti.brandonw.net/index.php?title=Z80_Optimization Z80 Optimization] |
Latest revision as of 14:20, 12 June 2024
I was very active on the CPC back in the day.
When I was at university someone one asked "Don't you do stuff in Amstrad Action" which was the weirdest bit of fanboying I ever had.
Track what I'm working on at https://github.com/cormacj
Follow me on Mastadon at: https://hachyderm.io/@cormac
cpcxfs headers
cpcxfs will add headers when you are copying files from .DSK images. Use this linux command to correct that:
dd bs=1 skip=128 if=header.rom of=noheader.rom