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