add -t sim6502 to cc65 and ca65 examples

This commit is contained in:
bbbradsmith 2024-04-16 14:06:45 -04:00
parent 89b709c7f8
commit fa1a426c29
1 changed files with 3 additions and 3 deletions

View File

@ -141,8 +141,8 @@ int main()
}
// Build and run:
// cc65 -o example.s example.c
// ca65 -o example.o example.s
// cc65 -t sim6502 -o example.s example.c
// ca65 -t sim6502 -o example.o example.s
// ld65 -t sim6502 -o example.prg example.o sim6502.lib
// sim65 example.prg
</verb></tscreen>
@ -173,7 +173,7 @@ _main:
rts
; Build and run:
; ca65 -o example.o example.s
; ca65 -t sim6502 -o example.o example.s
; ld65 -t sim6502 -o example.prg example.o sim6502.lib
; sim65 example.prg
</verb></tscreen>