blob: 16f751086b59c5e010959dc3903a5ce8c0805f84 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
%ifndef _CONSTANTS_ASM
%define _CONSTANTS_ASM
VIDEO_RAM equ 0b800h
MAX_ROWS equ 25
MAX_COLS equ 80
LENGTH_ROW equ 0A0h ; NOTE: length in bytes (80 * 2 = 160)
LENGTH_COL equ 02h ; NOTE: length in bytes (1 * 2 = 2)
ISR_TEST equ 20h
ISR_MINOS equ 21h
%include "colors.asm"
%include "ascii.asm" ; ASCII control codes
%include "scancodes.asm" ; Keyboard scancodes
%endif
|