8088 ASMIntel 8088 Macro Assembler v1.1
🍓 Berrry Computer
AUTO
CPU
── ASSEMBLY SOURCE ── CPU 8088
1
2
3
4
5
6
7
8
9
10
11
; Hello World for DOS
; Prints a message using INT 21h
ORG 0100h
MOV DX, msg ; Point to message
MOV AH, 09h ; DOS print string function
INT 21h ; Call DOS
MOV AH, 4Ch ; DOS exit function
INT 21h ; Exit program
msg: DB 'Hello, World!
#x27;
── MACHINE CODE [8088] ──
Press ASSEMBLE or enable auto-assemble
── CONSOLE ▼ ──
Ready. Press Ctrl+Enter to assemble.
Intel 8088 — 16-bit CPU, 8-bit bus (1979)Remix on Berrry