mirror of
https://github.com/bobbimanners/emailler.git
synced 2024-11-09 11:06:08 +00:00
14 lines
111 B
ArmAsm
14 lines
111 B
ArmAsm
|
|
.export print_a
|
|
.export print_cr
|
|
|
|
.data
|
|
print_a = $ffd2
|
|
|
|
.code
|
|
|
|
print_cr:
|
|
lda #13
|
|
jmp $ffd2
|
|
|