From 7b5b9edc2b8080dd5fb09f83597b685c4ef2c160 Mon Sep 17 00:00:00 2001 From: hneemann Date: Sun, 21 Aug 2016 15:09:04 +0200 Subject: [PATCH] updated readme --- README.md | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 5164e50..c375a88 100644 --- a/README.md +++ b/README.md @@ -10,9 +10,8 @@ The assembler is implemented in Java. The processor is a 16 bit harvard single cycle cpu and its architecture is inspired by the MIPS architecture. Only the handling of long constants is a bit of a hack to avoid a 32 bit instruction memory. The assembler supports pseudo instructions like *push*, *pop*, *enter*, *leave* or *call* and *ret [n]*. -So it is also possible to program more like for a x86 cisc processor. So on can explain the different techniques to -create and remove the stack frame of a function call on a x86 processor. -The assembler has a simple GUI and is able to control the [simulator](https://github.com/hneemann/Digital/) using its TCP/IP +So it is also possible to program more like for a x86 cisc processor. +The assembler has a simple GUI and is able to control the [simulator](https://github.com/hneemann/Digital/) by using its TCP/IP interface. So it is easy to debug an assembly program within the simulator. ### Usage ###