Requirements¶
We’ll be doing our Assembly work on Visual Studio, via MASM, and the code will be 32-bit x86 code. There’s no additional libraries to install, it can all be done via the
C++ Empty Project template, but I’d recommend setting up a Custom Template for assembly from the help of this video https://youtu.be/-MgEzUbGhq0. Also, we won’t be dealing with the terminal for most of our code. Now we’ll just be working with the Debugger, and using Breakpoints and the Watch to see what happens.1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | |
Once your template is all set, we’ll be ready to do some actual Assembly work.