Merge branch 'master' of git.silversoft.se:Imbus/HateLace

This commit is contained in:
Imbus 2024-04-22 00:41:33 +02:00
commit aa3c372d54

View file

@ -52,8 +52,8 @@ classDiagram
Computer --> ProgramCounter
Program <-- ArrayList
Program : +toString()
Memory <|-- LongMemory
Word <|-- LongWord
Memory --|> LongMemory
Word --|> LongWord
```
@ -73,15 +73,15 @@ classDiagram
class JumpEq
class Mul
class Print
Instruction --|> Word
Instruction --|> Address
Add --|> Instruction
Copy --|> Instruction
Halt --|> Instruction
Jump --|> Instruction
JumpEq --|> Instruction
Mul --|> Instruction
Print --|> Instruction
Instruction <|-- Word
Instruction <|-- Address
Add <|-- Instruction
Copy <|-- Instruction
Halt <|-- Instruction
Jump <|-- Instruction
JumpEq <|-- Instruction
Mul <|-- Instruction
Print <|-- Instruction
```
```mermaid