mirror of
https://github.com/cc65/cc65.git
synced 2024-11-03 10:07:02 +00:00
2040da0520
add ref/ and control/ subdirectories, so the control files and result files do not clutter the directory, and it is clear which file has which purpose.
22 lines
724 B
Plaintext
22 lines
724 B
Plaintext
ca65 Vx.xx - Git XXXXXXXXX
|
|
Main file : 001-macro-simple-listing.s
|
|
Current file: 001-macro-simple-listing.s
|
|
|
|
000000r 1 ; 2022-01-17 Spiro Trikaliotis
|
|
000000r 1
|
|
000000r 1 .macro TESTER
|
|
000000r 1 lda #2
|
|
000000r 1 .endmacro
|
|
000000r 1
|
|
000000r 1 test:
|
|
000000r 1 A2 00 ldx #0
|
|
000002r 1 A9 02 TESTER
|
|
000004r 1 A2 0F ldx #15
|
|
000006r 1 A9 02 TESTER
|
|
000008r 1 E8 inx
|
|
000009r 1 A9 02 TESTER
|
|
00000Br 1 A9 02 TESTER
|
|
00000Dr 1 CA dex
|
|
00000Er 1 60 rts
|
|
00000Er 1
|