Open vinz6751 opened 3 years ago
Oh good catch. Foolishness on my part, and maybe a copy-paste mistake. I may go ahead and fix these tonight.
I have updated them (I think). Take a look sometime and let me know if it looks right now. I really should have used working examples.
Thanks for the update, the example for sys_fsys_open on page 24 still needs adjusting. The rest looked fine
I've updated sys_fsys_open.
The function bindings in the manual make use of
lea <ea>,Dn
, but this not supported on the 68000 (only from 68020 probably?), on the 68000, LEA's destination register must be an address register.So we have to use:
move.l #buffer,d0
if using an immediate addressI can do the update in a few days hopefully.