Archived
1
0

minor fix

This commit is contained in:
Erick
2022-03-27 15:58:07 +02:00
parent cf5ae5a456
commit 7e888d8ad6
2 changed files with 9 additions and 4 deletions
+1
View File
@@ -8,6 +8,7 @@ case(out)
1 : 1 :
out = 15'b0000000000000001; out = 15'b0000000000000001;
break break
//TODO: create all keyboard cases
default: default:
0 : 0 :
out = 15'b0000000000000000; out = 15'b0000000000000000;
+8 -4
View File
@@ -1,9 +1,13 @@
segment .text section .text
global main global main
main: main:
segment .data section .data
dt screen 16384 ; 16-bit screen memory allocation dt screenMem 16384 ; screen memory address
dt kbd 24576 ; 16-bit keyboard memory allocation dt screenLen 8192 ; screen memory length
dt kbdMem 24576 ; keyboard memory address
section .bss
dt kbdIn ; keyboard current input (16-bit)