From 45703d743e67278d0e06496b6e5ef65dcc7b159a Mon Sep 17 00:00:00 2001 From: dDogge Date: Mon, 22 Apr 2024 00:17:07 +0200 Subject: [PATCH] Updated classdiagram --- README.md | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/README.md b/README.md index d97f036..2992174 100644 --- a/README.md +++ b/README.md @@ -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