Skip to content

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

License

Notifications You must be signed in to change notification settings

shadergz/machine-code

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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

About

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

Topics

Resources

License

Stars

Watchers

Forks