initial push of CPU API code

This commit is contained in:
Remzi Arpaci-Dusseau
2018-08-15 12:01:26 -05:00
parent e9dda8f72b
commit 6e8f4b7030
6 changed files with 141 additions and 0 deletions

18
cpu-api/Makefile Normal file
View File

@@ -0,0 +1,18 @@
all: p1 p2 p3 p4
clean:
rm -f p1 p2 p3 p4
p1: p1.c
gcc -o p1 p1.c -Wall
p2: p2.c
gcc -o p2 p2.c -Wall
p3: p3.c
gcc -o p3 p3.c -Wall
p4: p4.c
gcc -o p4 p4.c -Wall