Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

extapi: Add memory_decompress_from_func #380

Merged
merged 1 commit into from
Jan 13, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 16 additions & 14 deletions kernal/x16/extapi.s
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
.import mouse_set_position
.import scnsiz
.import kbd_leds
.import memory_decompress_internal

.export extapi

Expand Down Expand Up @@ -43,17 +44,18 @@ secrts:

apitbl:
.word secrts-1 ; slot 0 is reserved
.word clear_status-1 ; API 1
.word extapi_getlfs-1 ; API 2
.word mouse_sprite_offset-1 ; API 3
.word joystick_ps2_keycodes-1 ; API 4
.word iso_cursor_char-1 ; API 5
.word ps2kbd_typematic-1 ; API 6
.word pfkey-1 ; API 7
.word ps2data_fetch-1 ; API 8
.word ps2data_raw-1 ; API 9
.word cursor_blink-1 ; API 10
.word led_update-1 ; API 11
.word mouse_set_position-1 ; API 12
.word scnsiz-1 ; API 13
.word kbd_leds-1 ; API 14
.word clear_status-1 ; API 1
.word extapi_getlfs-1 ; API 2
.word mouse_sprite_offset-1 ; API 3
.word joystick_ps2_keycodes-1 ; API 4
.word iso_cursor_char-1 ; API 5
.word ps2kbd_typematic-1 ; API 6
.word pfkey-1 ; API 7
.word ps2data_fetch-1 ; API 8
.word ps2data_raw-1 ; API 9
.word cursor_blink-1 ; API 10
.word led_update-1 ; API 11
.word mouse_set_position-1 ; API 12
.word scnsiz-1 ; API 13
.word kbd_leds-1 ; API 14
.word memory_decompress_internal-1 ; API 15
Loading