mirror of
https://github.com/KarolS/millfork.git
synced 2024-11-01 05:05:32 +00:00
27 lines
380 B
Plaintext
27 lines
380 B
Plaintext
void _panic() {
|
|
asm {
|
|
SEI
|
|
PLA
|
|
TAY
|
|
PLA
|
|
|
|
TAX
|
|
JSR hi_nibble_to_hex
|
|
JSR putchar
|
|
TXA
|
|
JSR lo_nibble_to_hex
|
|
JSR putchar
|
|
|
|
TYA
|
|
JSR hi_nibble_to_hex
|
|
JSR putchar
|
|
TYA
|
|
JSR lo_nibble_to_hex
|
|
JSR putchar
|
|
|
|
LDA #2
|
|
STA $D020
|
|
}
|
|
while(true){}
|
|
}
|