Ranter
Join devRant
Do all the things like
++ or -- rants, post your own rants, comment on others' rants and build your customized dev avatar
Sign Up
Pipeless API
From the creators of devRant, Pipeless lets you power real-time personalized recommendations and activity feeds using a simple API
Learn More
Comments
-
Pointer32119y@Trejak I've been absent of assembly since last semester. It was cool learning it though -
Trejak2049y@apex I learned it for a course and I was looking forward to it since I started university. It wasn't a let down. -
Pointer32119y@Trejak I also learned it for a subject on my university. Even though I learned x64 by myself, the teacher was giving us Intel 80x86 ASM, that, even if it helps settle the ground for a complete understanding of how memory and processor works, it's a bit outdated (unless you're hacking your way through an old computer 😎)
Related Rants

Fuck yeah!!! After five days of fiddeling round in assembly without any sort of tutorial finally, im there :...
section .data
msg: db "ASM, Love Or Hate?",10
msglen: equ $-msg
GLOBAL _start
_start:
mov rdx, [msg]
mov rdi, msglen
call print_stdout
mov rax, 0x3c
mov rdi, 0
syscall
print_stdout:
mov rax, SYS_WRITE
mov rdi, STDOUT
syscall
ret
undefined
nasm
asm
linux x64