From 7efc1e06e9ea948bdb95edda1d8147a5409ca44f Mon Sep 17 00:00:00 2001 From: Jack Kingsman Date: Wed, 11 Oct 2017 14:00:40 -0700 Subject: [PATCH] Remove dead link --- instruction-set.html | 1 - 1 file changed, 1 deletion(-) diff --git a/instruction-set.html b/instruction-set.html index fd2d8d5..f828801 100644 --- a/instruction-set.html +++ b/instruction-set.html @@ -23,7 +23,6 @@

Introduction

This simulator provides a simplified assembler syntax (based on NASM) and is simulating a x86 like cpu. In depth documentation and introduction to assembler can be found on the following websites:

The simulator consists of a 8-bit cpu and 256 bytes of memory. All instructions (code) and variables (data) needs to fit inside the memory. For simplicity every instruction (and operand) is 1 byte. Therefore a MOV instruction will use 3 bytes of memory. The simulator provides a console output which is memory mapped from 0xE8 to 0xFF. Memory mapped means that every value written to this memory block is visible on the console.