mirror of
https://github.com/cc65/cc65.git
synced 2024-11-03 10:07:02 +00:00
16 lines
279 B
ArmAsm
16 lines
279 B
ArmAsm
;
|
|
; Oliver Schmidt, 2012-10-23
|
|
;
|
|
; unsigned __fastcall__ dio_query_sectcount (dhandle_t handle);
|
|
;
|
|
|
|
.export _dio_query_sectcount
|
|
.import __oserror
|
|
|
|
_dio_query_sectcount:
|
|
lda #0
|
|
sta __oserror
|
|
lda #<683
|
|
ldx #>683
|
|
rts
|