mirror of
https://github.com/bobbimanners/emailler.git
synced 2024-10-31 13:08:40 +00:00
13 lines
149 B
ArmAsm
13 lines
149 B
ArmAsm
.include "../inc/common.inc"
|
|
|
|
.export _http_get_value
|
|
|
|
.import http_get_value
|
|
|
|
_http_get_value:
|
|
jsr http_get_value
|
|
bcc :+
|
|
ldx #$00
|
|
txa
|
|
: rts
|