Skip to content

Latest commit

 

History

History
10 lines (7 loc) · 208 Bytes

README.md

File metadata and controls

10 lines (7 loc) · 208 Bytes

AsmLearning

Various programming exercises to learn x86.


To verify that the system is running x86_64 you can do this one-liner:

$ [ "`uname -p`" = "x86_64" ] && echo "Yes" ||  echo "No"