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
tyvm/asm/helloworld.asm
T
2022-02-05 15:47:42 +01:00

6 lines
83 B
NASM

.ORIG x3000;
LEA R0, HENLO_STR;
PUTs;
HALT;
HENLO_STR .STRINGZ "Henlo world!";
.END