NTMDev
(Math Is Fun!)
1
I recently got interested into Assembly again. If you haven’t seen my last post, its here.
I basically made a new project, and added a bunch more stuff. And a lot more professional.
You can see it here
(I think Guzman will be the first one to say something, or its going to be one of my friends who are just trying to prove me wrong)
1 Like
I have to look into it better … but I was trying it just a bit and I really like the idea and the execution …
1 Like
NTMDev
(Math Is Fun!)
3
Thanks man 
It’s really cool looking directly into how a computer functions
NTMDev
(Math Is Fun!)
4
@Guzman_Tierno I made some more functions and some changes, also i made a fibonacci generator.
mov eax,1
mov ebx,1
push 1
FibLoop:
add eax,ebx
push [01],[01]+1 ;I know this is not possible in "real" assembly
mov ecx,arx
mov ebx,eax
memlod ecx
jmp FibLoop
1 Like
port
(Thomas)
5
i would but i dont know assembly
1 Like