Started implementing the 8086 simulation

This commit is contained in:
2023-03-29 01:28:37 +01:00
parent 732aa2803f
commit 96d1381303
20 changed files with 832 additions and 0 deletions

8
8086_sim/Makefile Normal file
View File

@@ -0,0 +1,8 @@
CC=clang++
CFLAGS=-g -O0 -Wall -Wextra
LIBS=-Wl,-rpath,./lib -L./lib -lsim86
SRC=*.cpp
OUT=sim86
all:
$(CC) $(CFLAGS) $(LIBS) $(SRC) -o $(OUT)