feat: rename

This commit is contained in:
2026-01-30 20:04:51 +01:00
parent 4f39392c80
commit 42641a1b43
3 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
// Add two numbers which will compute the result in R2
// R0 and R1 will be the numbers to add
// Remember to set them in the assember program before running it.
//
//
//
@R0
D=M
@R1
D=D+M // Add playground (R0 + M(R1)) to new playground D || D = R0 + R1
@R2
M=D
(END)
@END
0;JMP