Skip to content

Commit 62e1a1e

Browse files
committed
Formatting.
1 parent 9fba86c commit 62e1a1e

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

Architecture/CPU/how_to_represent_an_instruction_set.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@ Let's learn how to use the `CPU` module to represent the instruction set of a hy
44

55
```
66
nop
7-
ld a, imm8,
8-
ld a, imm16
9-
call nz, imm16
10-
call imm16
7+
ld a, (imm8)
8+
ld a, (imm16)
9+
call nz, (imm16)
10+
call (imm16)
1111
```
1212

1313
## Defining the shape of an instruction

0 commit comments

Comments
 (0)