mirror of
https://github.com/cc65/cc65.git
synced 2025-02-05 04:37:23 +00:00
13 lines
208 B
ArmAsm
13 lines
208 B
ArmAsm
;
|
|
; Oliver Schmidt, 31.03.2005
|
|
;
|
|
; sectsize_t __fastcall__ dio_query_sectsize (dhandle_t handle);
|
|
;
|
|
|
|
.export _dio_query_sectsize
|
|
|
|
_dio_query_sectsize:
|
|
lda #<512
|
|
ldx #>512
|
|
rts
|