assembly-tutorial icon indicating copy to clipboard operation
assembly-tutorial copied to clipboard

mistake in line 423

Open Rachit1801 opened this issue 1 year ago • 1 comments

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

Rachit1801 avatar Sep 04 '24 00:09 Rachit1801

PRs are welcome.

mschwartz avatar Sep 04 '24 12:09 mschwartz

The issue was fixed, it seems. :)

sskras avatar Feb 06 '25 07:02 sskras