mirror of
https://github.com/cc65/cc65.git
synced 2024-10-31 20:06:11 +00:00
970af0cdb2
The constructor now is first. Used a more expressive literal zero.
50 lines
1.1 KiB
ArmAsm
50 lines
1.1 KiB
ArmAsm
;
|
|
; When Oric computers are in BASIC's command mode, the keyboard is in CAPS lock
|
|
; mode (because Oric BASIC keywords must be typed in upper-case). This
|
|
; constructor disables that mode, so that text will be typed as lower-case
|
|
; (which is the default on other cc65 platforms).
|
|
; This module is linked by the conio and POSIX input functions.
|
|
;
|
|
; 2014-09-04, Greg King
|
|
;
|
|
|
|
.constructor disable_caps
|
|
.destructor restore_caps
|
|
|
|
.include "atmos.inc"
|
|
|
|
|
|
;--------------------------------------------------------------------------
|
|
; Put this constructor into a segment that can be re-used by programs.
|
|
;
|
|
.segment "INIT"
|
|
|
|
; Turn the capitals lock off.
|
|
|
|
disable_caps:
|
|
lda CAPSLOCK
|
|
sta capsave
|
|
lda #$7F
|
|
sta CAPSLOCK
|
|
rts
|
|
|
|
|
|
;--------------------------------------------------------------------------
|
|
|
|
.code
|
|
|
|
; Restore the old capitals-lock state.
|
|
|
|
restore_caps:
|
|
lda capsave
|
|
sta CAPSLOCK
|
|
rts
|
|
|
|
|
|
;--------------------------------------------------------------------------
|
|
|
|
.bss
|
|
|
|
capsave:
|
|
.res 1
|