mirror of
https://github.com/RevCurtisP/C02.git
synced 2024-11-17 15:06:29 +00:00
18 lines
338 B
Plaintext
18 lines
338 B
Plaintext
|
;A02 Assembler Test Include File
|
||
|
|
||
|
TRUE: EQU $FF
|
||
|
FALSE: .EQU $00
|
||
|
|
||
|
one equ 1
|
||
|
two .equ 1 + 1
|
||
|
three equ one + one + one
|
||
|
four .equ three + 1
|
||
|
|
||
|
|
||
|
PNTR: EQU $80
|
||
|
.local EQU 99
|
||
|
STRUCT EQU $0FFF
|
||
|
|
||
|
.END ;Return to Main File
|
||
|
|
||
|
IGNORE EQU $9999 ;This will Not be Assembled
|