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