Skip to content

Commit

Permalink
MAth update
Browse files Browse the repository at this point in the history
  • Loading branch information
andreamazzai authored Oct 6, 2024
1 parent 0ecd404 commit 0a2998e
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions docs/_docs/97-bin-math.md
Original file line number Diff line number Diff line change
Expand Up @@ -389,16 +389,16 @@ Dovendo indirizzare 8 combinazioni di Q, B e A (000, 001 etc. fino a 111), una c

La seguente tabella riepiloga le situazioni di Overflow in base agli stati di Q, B ed A ed al fatto che si stiano eseguendo addizioni o sottrazioni:

| Q7-S2 | B7-S1 | A7-S0 | Sum/Sub | Input | Overflow |
| - | - | - | - | - | - |
| 0 | 0 | 0 | | I0 | - |
| **0** | **0** | **1** | **A \- B** | **I1** | **1** |
| **0** | **1** | **0** | **B \- A** | **I2** | **1** |
| **0** | **1** | **1** | **A + B** | **I3** | **1** |
| **1** | **0** | **0** | **A + B** | **I4** | **1** |
| **1** | **0** | **1** | **B \- A** | **I5** | **1** |
| **1** | **1** | **0** | **A \- B** | **I6** | **1** |
| 1 | 1 | 1 | | I7 | - |
| Q7-S2 | B7-S1 | A7-S0 | Sum/Sub | Input | Overflow |
| - | - | - | - | - | - |
| 0 | 0 | 0 | | I0 | - |
| **0** | **0** | **1** | **A - B** | **I1** | **1** |
| **0** | **1** | **0** | **B - A** | **I2** | **1** |
| **0** | **1** | **1** | **A + B** | **I3** | **1** |
| **1** | **0** | **0** | **A + B** | **I4** | **1** |
| **1** | **0** | **1** | **B - A** | **I5** | **1** |
| **1** | **1** | **0** | **A - B** | **I6** | **1** |
| 1 | 1 | 1 | | I7 | - |

Si noti però che l'operazione B - A non è necessaria per simulare le istruzioni di sottrazione del 6502, dunque in futuro non la terremo in considerazione.

Expand Down

0 comments on commit 0a2998e

Please sign in to comment.