├── README.md ├── lab0 ├── .config ├── arrays └── arrays.c ├── lab1 ├── .config ├── Makefile ├── README ├── bits.c ├── bits.h ├── btest ├── btest.c ├── btest.h ├── decl.c ├── dlc ├── driver.pl ├── fshow ├── fshow.c ├── ishow ├── ishow.c ├── pointer.c ├── pointer.h ├── ptest ├── ptest.c └── tests.c ├── lab2 ├── .config ├── Makefile ├── asemmblycode ├── bomb ├── bomb.c ├── defuser.txt └── instructions.pdf ├── lab3 ├── .config ├── Makefile ├── USERID ├── ass.o ├── ass.s ├── assembly ├── bang.txt ├── bufbomb ├── bufbomb.c ├── dynamite.txt ├── fizz.txt ├── hacker.txt ├── instructions.pdf ├── makecookie ├── sendstring ├── smoke.txt ├── test.o └── test.s ├── lab4 ├── .config ├── Makefile ├── cache-test ├── cache-test-skel.c ├── cache_16c_4a_4b.o ├── cache_32c_8a_8b.o ├── cache_64c_2a_16b.o ├── check.awk ├── check.sh ├── instructions.pdf ├── mystery-cache.h ├── mystery0.o ├── mystery1.o ├── mystery2.o └── mystery3.o ├── lab5 ├── 1 ├── .config ├── Makefile ├── README ├── clock.c ├── clock.h ├── clock.h.gch ├── clock.o ├── config.h ├── config.h.gch ├── fcyc.c ├── fcyc.h ├── fcyc.h.gch ├── fcyc.o ├── fsecs.c ├── fsecs.h ├── fsecs.h.gch ├── fsecs.o ├── ftimer.c ├── ftimer.h ├── ftimer.o ├── instructions.pdf ├── mdriver ├── mdriver.c ├── mdriver.o ├── memlib.c ├── memlib.h ├── memlib.h.gch ├── memlib.o ├── mm.c ├── mm.h ├── mm.h.gch ├── mm.o ├── myrealloctest ├── myrealloctest.c └── traces │ ├── amptjp-bal.rep │ ├── binary-bal.rep │ ├── binary2-bal.rep │ ├── cccp-bal.rep │ ├── coalescing-bal.rep │ ├── cp-decl-bal.rep │ ├── expr-bal.rep │ ├── random-bal.rep │ ├── random2-bal.rep │ ├── realloc-bal.rep │ ├── realloc2-bal.rep │ ├── short1-bal.rep │ └── short2-bal.rep └── tools ├── submit-hw └── update-course /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlsi1217/The-Hardware-Software-Interface-/HEAD/README.md -------------------------------------------------------------------------------- /lab0/.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlsi1217/The-Hardware-Software-Interface-/HEAD/lab0/.config -------------------------------------------------------------------------------- /lab0/arrays: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlsi1217/The-Hardware-Software-Interface-/HEAD/lab0/arrays -------------------------------------------------------------------------------- /lab0/arrays.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlsi1217/The-Hardware-Software-Interface-/HEAD/lab0/arrays.c -------------------------------------------------------------------------------- /lab1/.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlsi1217/The-Hardware-Software-Interface-/HEAD/lab1/.config -------------------------------------------------------------------------------- /lab1/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlsi1217/The-Hardware-Software-Interface-/HEAD/lab1/Makefile -------------------------------------------------------------------------------- /lab1/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlsi1217/The-Hardware-Software-Interface-/HEAD/lab1/README -------------------------------------------------------------------------------- /lab1/bits.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlsi1217/The-Hardware-Software-Interface-/HEAD/lab1/bits.c -------------------------------------------------------------------------------- /lab1/bits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlsi1217/The-Hardware-Software-Interface-/HEAD/lab1/bits.h -------------------------------------------------------------------------------- /lab1/btest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlsi1217/The-Hardware-Software-Interface-/HEAD/lab1/btest -------------------------------------------------------------------------------- /lab1/btest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlsi1217/The-Hardware-Software-Interface-/HEAD/lab1/btest.c -------------------------------------------------------------------------------- /lab1/btest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlsi1217/The-Hardware-Software-Interface-/HEAD/lab1/btest.h -------------------------------------------------------------------------------- /lab1/decl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlsi1217/The-Hardware-Software-Interface-/HEAD/lab1/decl.c -------------------------------------------------------------------------------- /lab1/dlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlsi1217/The-Hardware-Software-Interface-/HEAD/lab1/dlc -------------------------------------------------------------------------------- /lab1/driver.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlsi1217/The-Hardware-Software-Interface-/HEAD/lab1/driver.pl -------------------------------------------------------------------------------- /lab1/fshow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlsi1217/The-Hardware-Software-Interface-/HEAD/lab1/fshow -------------------------------------------------------------------------------- /lab1/fshow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlsi1217/The-Hardware-Software-Interface-/HEAD/lab1/fshow.c -------------------------------------------------------------------------------- /lab1/ishow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlsi1217/The-Hardware-Software-Interface-/HEAD/lab1/ishow -------------------------------------------------------------------------------- /lab1/ishow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlsi1217/The-Hardware-Software-Interface-/HEAD/lab1/ishow.c -------------------------------------------------------------------------------- /lab1/pointer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlsi1217/The-Hardware-Software-Interface-/HEAD/lab1/pointer.c -------------------------------------------------------------------------------- /lab1/pointer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlsi1217/The-Hardware-Software-Interface-/HEAD/lab1/pointer.h -------------------------------------------------------------------------------- /lab1/ptest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlsi1217/The-Hardware-Software-Interface-/HEAD/lab1/ptest -------------------------------------------------------------------------------- /lab1/ptest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlsi1217/The-Hardware-Software-Interface-/HEAD/lab1/ptest.c -------------------------------------------------------------------------------- /lab1/tests.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlsi1217/The-Hardware-Software-Interface-/HEAD/lab1/tests.c -------------------------------------------------------------------------------- /lab2/.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlsi1217/The-Hardware-Software-Interface-/HEAD/lab2/.config -------------------------------------------------------------------------------- /lab2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlsi1217/The-Hardware-Software-Interface-/HEAD/lab2/Makefile -------------------------------------------------------------------------------- /lab2/asemmblycode: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlsi1217/The-Hardware-Software-Interface-/HEAD/lab2/asemmblycode -------------------------------------------------------------------------------- /lab2/bomb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlsi1217/The-Hardware-Software-Interface-/HEAD/lab2/bomb -------------------------------------------------------------------------------- /lab2/bomb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlsi1217/The-Hardware-Software-Interface-/HEAD/lab2/bomb.c -------------------------------------------------------------------------------- /lab2/defuser.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlsi1217/The-Hardware-Software-Interface-/HEAD/lab2/defuser.txt -------------------------------------------------------------------------------- /lab2/instructions.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlsi1217/The-Hardware-Software-Interface-/HEAD/lab2/instructions.pdf -------------------------------------------------------------------------------- /lab3/.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlsi1217/The-Hardware-Software-Interface-/HEAD/lab3/.config -------------------------------------------------------------------------------- /lab3/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlsi1217/The-Hardware-Software-Interface-/HEAD/lab3/Makefile -------------------------------------------------------------------------------- /lab3/USERID: -------------------------------------------------------------------------------- 1 | 1914842 2 | -------------------------------------------------------------------------------- /lab3/ass.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlsi1217/The-Hardware-Software-Interface-/HEAD/lab3/ass.o -------------------------------------------------------------------------------- /lab3/ass.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlsi1217/The-Hardware-Software-Interface-/HEAD/lab3/ass.s -------------------------------------------------------------------------------- /lab3/assembly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlsi1217/The-Hardware-Software-Interface-/HEAD/lab3/assembly -------------------------------------------------------------------------------- /lab3/bang.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlsi1217/The-Hardware-Software-Interface-/HEAD/lab3/bang.txt -------------------------------------------------------------------------------- /lab3/bufbomb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlsi1217/The-Hardware-Software-Interface-/HEAD/lab3/bufbomb -------------------------------------------------------------------------------- /lab3/bufbomb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlsi1217/The-Hardware-Software-Interface-/HEAD/lab3/bufbomb.c -------------------------------------------------------------------------------- /lab3/dynamite.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlsi1217/The-Hardware-Software-Interface-/HEAD/lab3/dynamite.txt -------------------------------------------------------------------------------- /lab3/fizz.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlsi1217/The-Hardware-Software-Interface-/HEAD/lab3/fizz.txt -------------------------------------------------------------------------------- /lab3/hacker.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlsi1217/The-Hardware-Software-Interface-/HEAD/lab3/hacker.txt -------------------------------------------------------------------------------- /lab3/instructions.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlsi1217/The-Hardware-Software-Interface-/HEAD/lab3/instructions.pdf -------------------------------------------------------------------------------- /lab3/makecookie: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlsi1217/The-Hardware-Software-Interface-/HEAD/lab3/makecookie -------------------------------------------------------------------------------- /lab3/sendstring: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlsi1217/The-Hardware-Software-Interface-/HEAD/lab3/sendstring -------------------------------------------------------------------------------- /lab3/smoke.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlsi1217/The-Hardware-Software-Interface-/HEAD/lab3/smoke.txt -------------------------------------------------------------------------------- /lab3/test.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlsi1217/The-Hardware-Software-Interface-/HEAD/lab3/test.o -------------------------------------------------------------------------------- /lab3/test.s: -------------------------------------------------------------------------------- 1 | pushq $0x400ef3 2 | movabs $0x1bcfdd55799b18ff,%rax 3 | retq 4 | -------------------------------------------------------------------------------- /lab4/.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlsi1217/The-Hardware-Software-Interface-/HEAD/lab4/.config -------------------------------------------------------------------------------- /lab4/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlsi1217/The-Hardware-Software-Interface-/HEAD/lab4/Makefile -------------------------------------------------------------------------------- /lab4/cache-test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlsi1217/The-Hardware-Software-Interface-/HEAD/lab4/cache-test -------------------------------------------------------------------------------- /lab4/cache-test-skel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlsi1217/The-Hardware-Software-Interface-/HEAD/lab4/cache-test-skel.c -------------------------------------------------------------------------------- /lab4/cache_16c_4a_4b.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlsi1217/The-Hardware-Software-Interface-/HEAD/lab4/cache_16c_4a_4b.o -------------------------------------------------------------------------------- /lab4/cache_32c_8a_8b.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlsi1217/The-Hardware-Software-Interface-/HEAD/lab4/cache_32c_8a_8b.o -------------------------------------------------------------------------------- /lab4/cache_64c_2a_16b.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlsi1217/The-Hardware-Software-Interface-/HEAD/lab4/cache_64c_2a_16b.o -------------------------------------------------------------------------------- /lab4/check.awk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlsi1217/The-Hardware-Software-Interface-/HEAD/lab4/check.awk -------------------------------------------------------------------------------- /lab4/check.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlsi1217/The-Hardware-Software-Interface-/HEAD/lab4/check.sh -------------------------------------------------------------------------------- /lab4/instructions.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlsi1217/The-Hardware-Software-Interface-/HEAD/lab4/instructions.pdf -------------------------------------------------------------------------------- /lab4/mystery-cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlsi1217/The-Hardware-Software-Interface-/HEAD/lab4/mystery-cache.h -------------------------------------------------------------------------------- /lab4/mystery0.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlsi1217/The-Hardware-Software-Interface-/HEAD/lab4/mystery0.o -------------------------------------------------------------------------------- /lab4/mystery1.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlsi1217/The-Hardware-Software-Interface-/HEAD/lab4/mystery1.o -------------------------------------------------------------------------------- /lab4/mystery2.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlsi1217/The-Hardware-Software-Interface-/HEAD/lab4/mystery2.o -------------------------------------------------------------------------------- /lab4/mystery3.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlsi1217/The-Hardware-Software-Interface-/HEAD/lab4/mystery3.o -------------------------------------------------------------------------------- /lab5/.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlsi1217/The-Hardware-Software-Interface-/HEAD/lab5/.config -------------------------------------------------------------------------------- /lab5/1: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lab5/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlsi1217/The-Hardware-Software-Interface-/HEAD/lab5/Makefile -------------------------------------------------------------------------------- /lab5/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlsi1217/The-Hardware-Software-Interface-/HEAD/lab5/README -------------------------------------------------------------------------------- /lab5/clock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlsi1217/The-Hardware-Software-Interface-/HEAD/lab5/clock.c -------------------------------------------------------------------------------- /lab5/clock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlsi1217/The-Hardware-Software-Interface-/HEAD/lab5/clock.h -------------------------------------------------------------------------------- /lab5/clock.h.gch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlsi1217/The-Hardware-Software-Interface-/HEAD/lab5/clock.h.gch -------------------------------------------------------------------------------- /lab5/clock.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlsi1217/The-Hardware-Software-Interface-/HEAD/lab5/clock.o -------------------------------------------------------------------------------- /lab5/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlsi1217/The-Hardware-Software-Interface-/HEAD/lab5/config.h -------------------------------------------------------------------------------- /lab5/config.h.gch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlsi1217/The-Hardware-Software-Interface-/HEAD/lab5/config.h.gch -------------------------------------------------------------------------------- /lab5/fcyc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlsi1217/The-Hardware-Software-Interface-/HEAD/lab5/fcyc.c -------------------------------------------------------------------------------- /lab5/fcyc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlsi1217/The-Hardware-Software-Interface-/HEAD/lab5/fcyc.h -------------------------------------------------------------------------------- /lab5/fcyc.h.gch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlsi1217/The-Hardware-Software-Interface-/HEAD/lab5/fcyc.h.gch -------------------------------------------------------------------------------- /lab5/fcyc.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlsi1217/The-Hardware-Software-Interface-/HEAD/lab5/fcyc.o -------------------------------------------------------------------------------- /lab5/fsecs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlsi1217/The-Hardware-Software-Interface-/HEAD/lab5/fsecs.c -------------------------------------------------------------------------------- /lab5/fsecs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlsi1217/The-Hardware-Software-Interface-/HEAD/lab5/fsecs.h -------------------------------------------------------------------------------- /lab5/fsecs.h.gch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlsi1217/The-Hardware-Software-Interface-/HEAD/lab5/fsecs.h.gch -------------------------------------------------------------------------------- /lab5/fsecs.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlsi1217/The-Hardware-Software-Interface-/HEAD/lab5/fsecs.o -------------------------------------------------------------------------------- /lab5/ftimer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlsi1217/The-Hardware-Software-Interface-/HEAD/lab5/ftimer.c -------------------------------------------------------------------------------- /lab5/ftimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlsi1217/The-Hardware-Software-Interface-/HEAD/lab5/ftimer.h -------------------------------------------------------------------------------- /lab5/ftimer.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlsi1217/The-Hardware-Software-Interface-/HEAD/lab5/ftimer.o -------------------------------------------------------------------------------- /lab5/instructions.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlsi1217/The-Hardware-Software-Interface-/HEAD/lab5/instructions.pdf -------------------------------------------------------------------------------- /lab5/mdriver: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlsi1217/The-Hardware-Software-Interface-/HEAD/lab5/mdriver -------------------------------------------------------------------------------- /lab5/mdriver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlsi1217/The-Hardware-Software-Interface-/HEAD/lab5/mdriver.c -------------------------------------------------------------------------------- /lab5/mdriver.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlsi1217/The-Hardware-Software-Interface-/HEAD/lab5/mdriver.o -------------------------------------------------------------------------------- /lab5/memlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlsi1217/The-Hardware-Software-Interface-/HEAD/lab5/memlib.c -------------------------------------------------------------------------------- /lab5/memlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlsi1217/The-Hardware-Software-Interface-/HEAD/lab5/memlib.h -------------------------------------------------------------------------------- /lab5/memlib.h.gch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlsi1217/The-Hardware-Software-Interface-/HEAD/lab5/memlib.h.gch -------------------------------------------------------------------------------- /lab5/memlib.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlsi1217/The-Hardware-Software-Interface-/HEAD/lab5/memlib.o -------------------------------------------------------------------------------- /lab5/mm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlsi1217/The-Hardware-Software-Interface-/HEAD/lab5/mm.c -------------------------------------------------------------------------------- /lab5/mm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlsi1217/The-Hardware-Software-Interface-/HEAD/lab5/mm.h -------------------------------------------------------------------------------- /lab5/mm.h.gch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlsi1217/The-Hardware-Software-Interface-/HEAD/lab5/mm.h.gch -------------------------------------------------------------------------------- /lab5/mm.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlsi1217/The-Hardware-Software-Interface-/HEAD/lab5/mm.o -------------------------------------------------------------------------------- /lab5/myrealloctest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlsi1217/The-Hardware-Software-Interface-/HEAD/lab5/myrealloctest -------------------------------------------------------------------------------- /lab5/myrealloctest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlsi1217/The-Hardware-Software-Interface-/HEAD/lab5/myrealloctest.c -------------------------------------------------------------------------------- /lab5/traces/amptjp-bal.rep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlsi1217/The-Hardware-Software-Interface-/HEAD/lab5/traces/amptjp-bal.rep -------------------------------------------------------------------------------- /lab5/traces/binary-bal.rep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlsi1217/The-Hardware-Software-Interface-/HEAD/lab5/traces/binary-bal.rep -------------------------------------------------------------------------------- /lab5/traces/binary2-bal.rep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlsi1217/The-Hardware-Software-Interface-/HEAD/lab5/traces/binary2-bal.rep -------------------------------------------------------------------------------- /lab5/traces/cccp-bal.rep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlsi1217/The-Hardware-Software-Interface-/HEAD/lab5/traces/cccp-bal.rep -------------------------------------------------------------------------------- /lab5/traces/coalescing-bal.rep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlsi1217/The-Hardware-Software-Interface-/HEAD/lab5/traces/coalescing-bal.rep -------------------------------------------------------------------------------- /lab5/traces/cp-decl-bal.rep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlsi1217/The-Hardware-Software-Interface-/HEAD/lab5/traces/cp-decl-bal.rep -------------------------------------------------------------------------------- /lab5/traces/expr-bal.rep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlsi1217/The-Hardware-Software-Interface-/HEAD/lab5/traces/expr-bal.rep -------------------------------------------------------------------------------- /lab5/traces/random-bal.rep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlsi1217/The-Hardware-Software-Interface-/HEAD/lab5/traces/random-bal.rep -------------------------------------------------------------------------------- /lab5/traces/random2-bal.rep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlsi1217/The-Hardware-Software-Interface-/HEAD/lab5/traces/random2-bal.rep -------------------------------------------------------------------------------- /lab5/traces/realloc-bal.rep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlsi1217/The-Hardware-Software-Interface-/HEAD/lab5/traces/realloc-bal.rep -------------------------------------------------------------------------------- /lab5/traces/realloc2-bal.rep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlsi1217/The-Hardware-Software-Interface-/HEAD/lab5/traces/realloc2-bal.rep -------------------------------------------------------------------------------- /lab5/traces/short1-bal.rep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlsi1217/The-Hardware-Software-Interface-/HEAD/lab5/traces/short1-bal.rep -------------------------------------------------------------------------------- /lab5/traces/short2-bal.rep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlsi1217/The-Hardware-Software-Interface-/HEAD/lab5/traces/short2-bal.rep -------------------------------------------------------------------------------- /tools/submit-hw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlsi1217/The-Hardware-Software-Interface-/HEAD/tools/submit-hw -------------------------------------------------------------------------------- /tools/update-course: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlsi1217/The-Hardware-Software-Interface-/HEAD/tools/update-course --------------------------------------------------------------------------------