Proof: Addi Zero Insn 0
Let's prove the following theorem:
if the following are true:
- instruction #0 is
addi dst=3 src=0 imm=3
- the PC at time 0 = 0
then value of cell 3 at time 1 = 3
Proof:
Given
1 | instruction #0 is addi dst=3 src=0 imm=3 |
---|---|
2 | the PC at time 0 = 0 |
# | Claim | Reason |
---|---|---|
1 | value of cell 3 at time (0 + 1) = 3 | if instruction #0 is addi dst=3 src=0 imm=3 and the PC at time 0 = 0, then value of cell 3 at time (0 + 1) = 3 |
2 | 0 + 1 = 1 | 0 + 1 = 1 |
3 | value of cell 3 at time (0 + 1) = value of cell 3 at time 1 | if 0 + 1 = 1, then value of cell 3 at time (0 + 1) = value of cell 3 at time 1 |
4 | value of cell 3 at time 1 = 3 | if value of cell 3 at time (0 + 1) = value of cell 3 at time 1 and value of cell 3 at time (0 + 1) = 3, then value of cell 3 at time 1 = 3 |
Comments
Please log in to add comments