Skip to content

Latest commit

 

History

History
17 lines (13 loc) · 328 Bytes

README.md

File metadata and controls

17 lines (13 loc) · 328 Bytes

machine-code

A collection of Assembly (Intel syntax) code that I made and that I'm currently learning about, there isn't any SIMD instructions here

hello_world

  • A simple hello world program
section .text
_start:
    mov rdx, 12
    mov rsi, hello_world
    mov rdi, STDOUT
    mov rax, SYS_write
    syscall