John Mavrick's Garden

Search IconIcon to open search

Last updated Unknown

Status: Tags: Links: A Instruction (CPU)


C Instruction (CPU)

Chart

!c instruction visual.png

Notes

Performs a compution on a certain destination

1
2
3
4
5
6
7
//Set RAM[300] to value of D register - 1
@300 //A = 300
M = D-1 //RAM[300] = D-1

// If (D-1==0) jump to execute the instruction stored in ROM[56]
@56 //A = 56
D-1;JEQ //if (D-1==0), goto 56

References:


Interactive Graph