Skip to content

Instantly share code, notes, and snippets.

View damnhi's full-sized avatar

Damian Otto damnhi

  • Cracow
View GitHub Profile
@damnhi
damnhi / Helloworldassembly.md
Last active December 2, 2022 17:53
Hello world gist
segment .data
	tekst db "Hello World!",0Dh,0Ah,"$"

segment stosik stack
	resb 64
segment .text
mov ax, .data
mov ds, ax
mov ax, stosik