From 1dd05ebe61c95985b16d170bf2d3f081a02dfd7d Mon Sep 17 00:00:00 2001 From: Joseph Hunkeler Date: Tue, 28 Nov 2017 16:49:24 -0500 Subject: Initial commit --- constants.asm | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 constants.asm (limited to 'constants.asm') diff --git a/constants.asm b/constants.asm new file mode 100644 index 0000000..56c2496 --- /dev/null +++ b/constants.asm @@ -0,0 +1,10 @@ +%ifndef _CONSTANTS_ASM +%define _CONSTANTS_ASM + +LENGTH_ROW equ 0A0h ; NOTE: length in bytes (80 * 2 = 160) + +%include "ascii.asm" ; ASCII control codes +%include "scancodes.asm" ; Keyboard scancodes + +%endif + -- cgit