So this morning I posted a confused question about assembly and I received some great genuine help, which I really appreciate.
And now I'm starting to get into assembly and am beginning to understand how it works.
Things I feel …
Contents
Intro
Code
Assembling and Running
Miscellaneous
Question
1. Intro
This isn't a question per se (though there is one at the bottom) but a HelloWorld app for people on StackOverflow to experiment with.
When I was first trying programing in …
What is the difference between the following two lines?
mov ax, bx
mov ax, [bx]
If bx contains the value 100h and the value at memory address 100h is 23, does the second one copy 23 to ax?
Also, what is the …