💾 Archived View for thrig.me › blog › 2023 › 11 › 16 › jmpjmp.asm captured on 2024-07-09 at 02:00:17.

View Raw

More Information

⬅️ Previous capture (2023-12-28)

-=-=-=-=-=-=-

BITS 16
foo:
	xor ax, ax
	add al, 3
	jmp bar
db 'this is a test'
bar:
	sub al, 1
	jmp foo