assembly-tutorial
assembly-tutorial copied to clipboard
mistake in line 423
For example, to add two numbers at memory locations (addresses) 0x100 and 0x200 and store the result at address 0x300, and we have two registers named a and b:
load value at 0x100 into a
load value at 0x200 into b
add a and b, leaving result in a
store a at 0x3000
It should have been 0x300
PRs are welcome.
The issue was fixed, it seems. :)