Archived
1
0
This repository has been archived on 2026-02-06. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
2022-03-27 16:17:06 +02:00

15 lines
333 B
NASM

.model small
section .data
dt screenMem 16383 ; screen memory address
dt screenLen 8192 ; screen memory length
dt kbdMem 24575 ; keyboard memory address
section .bss
dt kbdIn ; keyboard input value
section .text
global main
main:
; keyboard current input (16-bit)