added cx16.EXTAPI_kbd_leds definition (new in kernal R48)

This commit is contained in:
Irmen de Jong 2024-09-06 20:47:49 +02:00
parent f7feaf158d
commit 28b43b3e1d
2 changed files with 3 additions and 1 deletions

View File

@ -554,7 +554,8 @@ const ubyte EXTAPI_ps2data_raw = $09
const ubyte EXTAPI_cursor_blink = $0A
const ubyte EXTAPI_led_update = $0B
const ubyte EXTAPI_mouse_set_position = $0C
const ubyte EXTAPI_scnsiz = $0D ; rom R48+
const ubyte EXTAPI_scnsiz = $0D
const ubyte EXTAPI_kbd_leds = $0E
; extapi16 call numbers
const ubyte EXTAPI16_test = $00

View File

@ -14,6 +14,7 @@ Future Things and Ideas
^^^^^^^^^^^^^^^^^^^^^^^
Compiler:
- Some facility to use add-with-carry and sub-with-carry (so we can chain additions/subtractions without clc/sec inserted every time)
- Can we support signed % (remainder) somehow?
- Don't add "random" rts to %asm blocks but instead give a warning about it? (but this breaks existing behavior that others already depend on... command line switch?)
- IR: implement missing operators in AssignmentGen (array shifts etc)