mirror of
https://github.com/a2stuff/prodos-drivers.git
synced 2024-11-03 05:04:50 +00:00
1260999b6c
Mostly just for historical interest.
18 lines
780 B
PHP
18 lines
780 B
PHP
;;; ============================================================
|
|
;;; ASCII Code Points (also used as key codes)
|
|
;;; ============================================================
|
|
|
|
ASCII_BELL = $07 ; bell
|
|
ASCII_LEFT = $08 ; left arrow
|
|
ASCII_TAB = $09 ; tab
|
|
ASCII_DOWN = $0A ; down arrow
|
|
ASCII_UP = $0B ; up arrow
|
|
ASCII_CR = $0D ; carriage return
|
|
ASCII_RIGHT = $15 ; right arrow
|
|
ASCII_SYN = $16 ; scroll text window up
|
|
ASCII_ETB = $17 ; scroll text window down
|
|
ASCII_CLEAR = $18 ; clear
|
|
ASCII_EM = $19 ; move cursor to upper left
|
|
ASCII_ESCAPE = $1B ; escape
|
|
ASCII_DELETE = $7F ; delete
|