mirror of
https://github.com/cc65/cc65.git
synced 2026-04-22 01:16:54 +00:00
Added isfast function which returns a 1 when the C128 is in 2MHz mode.
This commit is contained in:
@@ -0,0 +1,20 @@
|
||||
;
|
||||
; Marco van den Heuvel, 2018-03-19
|
||||
;
|
||||
; unsigned char isfast (void);
|
||||
; /* Returns 1 if the CPU is in 2MHz mode. */
|
||||
;
|
||||
|
||||
.export _isfast
|
||||
|
||||
.include "c128.inc"
|
||||
|
||||
|
||||
.proc _isfast
|
||||
|
||||
lda VIC_CLK_128
|
||||
and #$01
|
||||
rts
|
||||
|
||||
.endproc
|
||||
|
||||
Reference in New Issue
Block a user