├── Computer Systems - A Programmer's Perspective.pdf ├── Finals ├── cse351-10au-final-solution.pdf ├── cse351-10au-final.pdf ├── cse351-10sp-final-solution.pdf ├── cse351-10sp-final.pdf ├── cse351-12au-final-solution.pdf ├── cse351-12au-final.pdf ├── cse351-12sp-final-solution.pdf ├── cse351-12sp-final.pdf ├── cse351-13wi-final-solution.pdf └── cse351-13wi-final.pdf ├── Midterms ├── cse351-10au-midterm-solution.pdf ├── cse351-10au-midterm.pdf ├── cse351-10sp-midterm-solution.pdf ├── cse351-10sp-midterm.pdf ├── cse351-11wi-midterm-solution.pdf ├── cse351-12au-midterm-solution.pdf ├── cse351-12au-midterm.pdf ├── cse351-12sp-midterm-solution.pdf ├── cse351-12sp-midterm.pdf ├── cse351-13wi-midterm-solution.pdf └── cse351-13wi-midterm.pdf ├── README.md ├── The_C_Programming_Language_2nd_edition.pdf ├── Week 01 ├── 01-intro.pdf ├── 02-memory.pdf ├── Section │ ├── 351Section1Slides.pdf │ ├── Cheatsheet-c.pdf │ ├── Cheatsheet-emacs.pdf │ └── Cheatsheet-unix.pdf ├── arrays.c ├── lab0.pdf └── solution-arrays.txt ├── Week 02 ├── 03-integers.pdf ├── 04-floats.pdf ├── 05-machineprog.pdf ├── Lab1 │ ├── Makefile │ ├── README │ ├── bits.c │ ├── bits.h │ ├── btest │ ├── btest.c │ ├── btest.h │ ├── decl.c │ ├── dlc │ ├── driver.pl │ ├── fshow.c │ ├── ishow.c │ ├── pointer.c │ ├── pointer.h │ ├── ptest │ ├── ptest.c │ └── tests.c ├── lab1_spec.pdf └── section02.pdf ├── Week 03 ├── 06-x86-I.pdf ├── 07-x86-II.pdf ├── hw1.pdf ├── hw1_solution.txt └── hw1_spec.pdf ├── Week 04 ├── 08-x86-III.pdf ├── 09-procedures-I.pdf ├── Lab2 │ ├── bomb50 │ │ ├── bomb │ │ ├── bomb.c │ │ ├── defuser.txt │ │ └── disassemble.txt │ ├── lab2-bomb.tar │ └── lab2_spec.pdf └── section04.pdf ├── Week 05 ├── 10-procedures-II.pdf ├── 11-arrays.pdf ├── 12-structs.pdf ├── hw2.pdf ├── hw2_comment.txt ├── hw2_spec.pdf └── section05.pdf ├── Week 06 ├── 13-buffoverflow.pdf ├── 14-caches-I.pdf └── Lab3 │ ├── lab3.tar.gz │ ├── lab3 │ ├── CSE_ID.txt │ ├── Makefile │ ├── attack.d │ ├── attack.o │ ├── attack.s │ ├── bang.txt │ ├── bufbomb │ ├── bufbomb.c │ ├── bufbomb.d │ ├── exploit.bytes │ ├── fizz.txt │ ├── makecookie │ ├── sendstring │ └── smoke.txt │ └── lab3_spec.pdf ├── Week 07 ├── 15-caches-II.pdf ├── 16-exceptional-control.pdf ├── 17-processes.pdf ├── Lab4 │ ├── lab4.pdf │ ├── lab4.tar.gz │ ├── lab4 │ │ ├── ._Makefile │ │ ├── ._cacheExperiment.c │ │ ├── ._cacheExperiment.java │ │ ├── ._cacheExperimentInteger.java │ │ ├── ._cache_16c_4a_4b.o │ │ ├── ._cache_32c_8a_8b.o │ │ ├── ._cache_64c_2a_16b.o │ │ ├── ._mystery-cache.h │ │ ├── ._mystery0.o │ │ ├── ._mystery1.o │ │ ├── ._mystery2.o │ │ ├── ._mystery3.o │ │ ├── ._run.pl │ │ ├── Makefile │ │ ├── cache-test-skel.c │ │ ├── cacheExperiment.c │ │ ├── cacheExperiment.java │ │ ├── cacheExperimentInteger.java │ │ ├── cache_16c_4a_4b.o │ │ ├── cache_32c_8a_8b.o │ │ ├── cache_64c_2a_16b.o │ │ ├── extra.c │ │ ├── mystery-cache.h │ │ ├── mystery0.o │ │ ├── mystery1.o │ │ ├── mystery2.o │ │ ├── mystery3.o │ │ └── run.pl │ └── lab4_spec.pdf ├── hw3.pdf └── hw3_spec.pdf ├── Week 08 ├── 18-virtualmem-I.pdf ├── 19-virtualmem-II.pdf ├── 20-memallocation-I.pdf ├── hw4.pdf ├── hw4_solution-567.pdf └── hw4_spec.pdf ├── Week 09 ├── 21-memallocation-II.pdf ├── 22-memallocation-III.pdf ├── lab5.tar.gz ├── lab5 │ ├── Makefile │ ├── README │ ├── clock.c │ ├── clock.h │ ├── config.h │ ├── fcyc.c │ ├── fcyc.h │ ├── fsecs.c │ ├── fsecs.h │ ├── ftimer.c │ ├── ftimer.h │ ├── mdriver-realloc.c │ ├── mdriver.c │ ├── memlib.c │ ├── memlib.h │ ├── mm.c │ ├── mm.h │ └── 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 ├── lab5_spec.pdf └── stack.c └── Week 10 ├── 23-java.pdf └── 24-wrapup.pdf /Computer Systems - A Programmer's Perspective.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldfaiztt/CSE351/HEAD/Computer Systems - A Programmer's Perspective.pdf -------------------------------------------------------------------------------- /Finals/cse351-10au-final-solution.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldfaiztt/CSE351/HEAD/Finals/cse351-10au-final-solution.pdf -------------------------------------------------------------------------------- /Finals/cse351-10au-final.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldfaiztt/CSE351/HEAD/Finals/cse351-10au-final.pdf -------------------------------------------------------------------------------- /Finals/cse351-10sp-final-solution.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldfaiztt/CSE351/HEAD/Finals/cse351-10sp-final-solution.pdf -------------------------------------------------------------------------------- /Finals/cse351-10sp-final.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldfaiztt/CSE351/HEAD/Finals/cse351-10sp-final.pdf -------------------------------------------------------------------------------- /Finals/cse351-12au-final-solution.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldfaiztt/CSE351/HEAD/Finals/cse351-12au-final-solution.pdf -------------------------------------------------------------------------------- /Finals/cse351-12au-final.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldfaiztt/CSE351/HEAD/Finals/cse351-12au-final.pdf -------------------------------------------------------------------------------- /Finals/cse351-12sp-final-solution.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldfaiztt/CSE351/HEAD/Finals/cse351-12sp-final-solution.pdf -------------------------------------------------------------------------------- /Finals/cse351-12sp-final.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldfaiztt/CSE351/HEAD/Finals/cse351-12sp-final.pdf -------------------------------------------------------------------------------- /Finals/cse351-13wi-final-solution.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldfaiztt/CSE351/HEAD/Finals/cse351-13wi-final-solution.pdf -------------------------------------------------------------------------------- /Finals/cse351-13wi-final.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldfaiztt/CSE351/HEAD/Finals/cse351-13wi-final.pdf -------------------------------------------------------------------------------- /Midterms/cse351-10au-midterm-solution.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldfaiztt/CSE351/HEAD/Midterms/cse351-10au-midterm-solution.pdf -------------------------------------------------------------------------------- /Midterms/cse351-10au-midterm.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldfaiztt/CSE351/HEAD/Midterms/cse351-10au-midterm.pdf -------------------------------------------------------------------------------- /Midterms/cse351-10sp-midterm-solution.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldfaiztt/CSE351/HEAD/Midterms/cse351-10sp-midterm-solution.pdf -------------------------------------------------------------------------------- /Midterms/cse351-10sp-midterm.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldfaiztt/CSE351/HEAD/Midterms/cse351-10sp-midterm.pdf -------------------------------------------------------------------------------- /Midterms/cse351-11wi-midterm-solution.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldfaiztt/CSE351/HEAD/Midterms/cse351-11wi-midterm-solution.pdf -------------------------------------------------------------------------------- /Midterms/cse351-12au-midterm-solution.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldfaiztt/CSE351/HEAD/Midterms/cse351-12au-midterm-solution.pdf -------------------------------------------------------------------------------- /Midterms/cse351-12au-midterm.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldfaiztt/CSE351/HEAD/Midterms/cse351-12au-midterm.pdf -------------------------------------------------------------------------------- /Midterms/cse351-12sp-midterm-solution.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldfaiztt/CSE351/HEAD/Midterms/cse351-12sp-midterm-solution.pdf -------------------------------------------------------------------------------- /Midterms/cse351-12sp-midterm.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldfaiztt/CSE351/HEAD/Midterms/cse351-12sp-midterm.pdf -------------------------------------------------------------------------------- /Midterms/cse351-13wi-midterm-solution.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldfaiztt/CSE351/HEAD/Midterms/cse351-13wi-midterm-solution.pdf -------------------------------------------------------------------------------- /Midterms/cse351-13wi-midterm.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldfaiztt/CSE351/HEAD/Midterms/cse351-13wi-midterm.pdf -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldfaiztt/CSE351/HEAD/README.md -------------------------------------------------------------------------------- /The_C_Programming_Language_2nd_edition.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldfaiztt/CSE351/HEAD/The_C_Programming_Language_2nd_edition.pdf -------------------------------------------------------------------------------- /Week 01/01-intro.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldfaiztt/CSE351/HEAD/Week 01/01-intro.pdf -------------------------------------------------------------------------------- /Week 01/02-memory.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldfaiztt/CSE351/HEAD/Week 01/02-memory.pdf -------------------------------------------------------------------------------- /Week 01/Section/351Section1Slides.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldfaiztt/CSE351/HEAD/Week 01/Section/351Section1Slides.pdf -------------------------------------------------------------------------------- /Week 01/Section/Cheatsheet-c.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldfaiztt/CSE351/HEAD/Week 01/Section/Cheatsheet-c.pdf -------------------------------------------------------------------------------- /Week 01/Section/Cheatsheet-emacs.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldfaiztt/CSE351/HEAD/Week 01/Section/Cheatsheet-emacs.pdf -------------------------------------------------------------------------------- /Week 01/Section/Cheatsheet-unix.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldfaiztt/CSE351/HEAD/Week 01/Section/Cheatsheet-unix.pdf -------------------------------------------------------------------------------- /Week 01/arrays.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldfaiztt/CSE351/HEAD/Week 01/arrays.c -------------------------------------------------------------------------------- /Week 01/lab0.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldfaiztt/CSE351/HEAD/Week 01/lab0.pdf -------------------------------------------------------------------------------- /Week 01/solution-arrays.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldfaiztt/CSE351/HEAD/Week 01/solution-arrays.txt -------------------------------------------------------------------------------- /Week 02/03-integers.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldfaiztt/CSE351/HEAD/Week 02/03-integers.pdf -------------------------------------------------------------------------------- /Week 02/04-floats.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldfaiztt/CSE351/HEAD/Week 02/04-floats.pdf -------------------------------------------------------------------------------- /Week 02/05-machineprog.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldfaiztt/CSE351/HEAD/Week 02/05-machineprog.pdf -------------------------------------------------------------------------------- /Week 02/Lab1/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldfaiztt/CSE351/HEAD/Week 02/Lab1/Makefile -------------------------------------------------------------------------------- /Week 02/Lab1/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldfaiztt/CSE351/HEAD/Week 02/Lab1/README -------------------------------------------------------------------------------- /Week 02/Lab1/bits.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldfaiztt/CSE351/HEAD/Week 02/Lab1/bits.c -------------------------------------------------------------------------------- /Week 02/Lab1/bits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldfaiztt/CSE351/HEAD/Week 02/Lab1/bits.h -------------------------------------------------------------------------------- /Week 02/Lab1/btest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldfaiztt/CSE351/HEAD/Week 02/Lab1/btest -------------------------------------------------------------------------------- /Week 02/Lab1/btest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldfaiztt/CSE351/HEAD/Week 02/Lab1/btest.c -------------------------------------------------------------------------------- /Week 02/Lab1/btest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldfaiztt/CSE351/HEAD/Week 02/Lab1/btest.h -------------------------------------------------------------------------------- /Week 02/Lab1/decl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldfaiztt/CSE351/HEAD/Week 02/Lab1/decl.c -------------------------------------------------------------------------------- /Week 02/Lab1/dlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldfaiztt/CSE351/HEAD/Week 02/Lab1/dlc -------------------------------------------------------------------------------- /Week 02/Lab1/driver.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldfaiztt/CSE351/HEAD/Week 02/Lab1/driver.pl -------------------------------------------------------------------------------- /Week 02/Lab1/fshow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldfaiztt/CSE351/HEAD/Week 02/Lab1/fshow.c -------------------------------------------------------------------------------- /Week 02/Lab1/ishow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldfaiztt/CSE351/HEAD/Week 02/Lab1/ishow.c -------------------------------------------------------------------------------- /Week 02/Lab1/pointer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldfaiztt/CSE351/HEAD/Week 02/Lab1/pointer.c -------------------------------------------------------------------------------- /Week 02/Lab1/pointer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldfaiztt/CSE351/HEAD/Week 02/Lab1/pointer.h -------------------------------------------------------------------------------- /Week 02/Lab1/ptest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldfaiztt/CSE351/HEAD/Week 02/Lab1/ptest -------------------------------------------------------------------------------- /Week 02/Lab1/ptest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldfaiztt/CSE351/HEAD/Week 02/Lab1/ptest.c -------------------------------------------------------------------------------- /Week 02/Lab1/tests.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldfaiztt/CSE351/HEAD/Week 02/Lab1/tests.c -------------------------------------------------------------------------------- /Week 02/lab1_spec.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldfaiztt/CSE351/HEAD/Week 02/lab1_spec.pdf -------------------------------------------------------------------------------- /Week 02/section02.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldfaiztt/CSE351/HEAD/Week 02/section02.pdf -------------------------------------------------------------------------------- /Week 03/06-x86-I.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldfaiztt/CSE351/HEAD/Week 03/06-x86-I.pdf -------------------------------------------------------------------------------- /Week 03/07-x86-II.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldfaiztt/CSE351/HEAD/Week 03/07-x86-II.pdf -------------------------------------------------------------------------------- /Week 03/hw1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldfaiztt/CSE351/HEAD/Week 03/hw1.pdf -------------------------------------------------------------------------------- /Week 03/hw1_solution.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldfaiztt/CSE351/HEAD/Week 03/hw1_solution.txt -------------------------------------------------------------------------------- /Week 03/hw1_spec.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldfaiztt/CSE351/HEAD/Week 03/hw1_spec.pdf -------------------------------------------------------------------------------- /Week 04/08-x86-III.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldfaiztt/CSE351/HEAD/Week 04/08-x86-III.pdf -------------------------------------------------------------------------------- /Week 04/09-procedures-I.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldfaiztt/CSE351/HEAD/Week 04/09-procedures-I.pdf -------------------------------------------------------------------------------- /Week 04/Lab2/bomb50/bomb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldfaiztt/CSE351/HEAD/Week 04/Lab2/bomb50/bomb -------------------------------------------------------------------------------- /Week 04/Lab2/bomb50/bomb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldfaiztt/CSE351/HEAD/Week 04/Lab2/bomb50/bomb.c -------------------------------------------------------------------------------- /Week 04/Lab2/bomb50/defuser.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldfaiztt/CSE351/HEAD/Week 04/Lab2/bomb50/defuser.txt -------------------------------------------------------------------------------- /Week 04/Lab2/bomb50/disassemble.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldfaiztt/CSE351/HEAD/Week 04/Lab2/bomb50/disassemble.txt -------------------------------------------------------------------------------- /Week 04/Lab2/lab2-bomb.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldfaiztt/CSE351/HEAD/Week 04/Lab2/lab2-bomb.tar -------------------------------------------------------------------------------- /Week 04/Lab2/lab2_spec.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldfaiztt/CSE351/HEAD/Week 04/Lab2/lab2_spec.pdf -------------------------------------------------------------------------------- /Week 04/section04.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldfaiztt/CSE351/HEAD/Week 04/section04.pdf -------------------------------------------------------------------------------- /Week 05/10-procedures-II.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldfaiztt/CSE351/HEAD/Week 05/10-procedures-II.pdf -------------------------------------------------------------------------------- /Week 05/11-arrays.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldfaiztt/CSE351/HEAD/Week 05/11-arrays.pdf -------------------------------------------------------------------------------- /Week 05/12-structs.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldfaiztt/CSE351/HEAD/Week 05/12-structs.pdf -------------------------------------------------------------------------------- /Week 05/hw2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldfaiztt/CSE351/HEAD/Week 05/hw2.pdf -------------------------------------------------------------------------------- /Week 05/hw2_comment.txt: -------------------------------------------------------------------------------- 1 | 6. -1 cases are incorrect (check the hex values) -------------------------------------------------------------------------------- /Week 05/hw2_spec.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldfaiztt/CSE351/HEAD/Week 05/hw2_spec.pdf -------------------------------------------------------------------------------- /Week 05/section05.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldfaiztt/CSE351/HEAD/Week 05/section05.pdf -------------------------------------------------------------------------------- /Week 06/13-buffoverflow.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldfaiztt/CSE351/HEAD/Week 06/13-buffoverflow.pdf -------------------------------------------------------------------------------- /Week 06/14-caches-I.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldfaiztt/CSE351/HEAD/Week 06/14-caches-I.pdf -------------------------------------------------------------------------------- /Week 06/Lab3/lab3.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldfaiztt/CSE351/HEAD/Week 06/Lab3/lab3.tar.gz -------------------------------------------------------------------------------- /Week 06/Lab3/lab3/CSE_ID.txt: -------------------------------------------------------------------------------- 1 | mijc0517 2 | -------------------------------------------------------------------------------- /Week 06/Lab3/lab3/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldfaiztt/CSE351/HEAD/Week 06/Lab3/lab3/Makefile -------------------------------------------------------------------------------- /Week 06/Lab3/lab3/attack.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldfaiztt/CSE351/HEAD/Week 06/Lab3/lab3/attack.d -------------------------------------------------------------------------------- /Week 06/Lab3/lab3/attack.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldfaiztt/CSE351/HEAD/Week 06/Lab3/lab3/attack.o -------------------------------------------------------------------------------- /Week 06/Lab3/lab3/attack.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldfaiztt/CSE351/HEAD/Week 06/Lab3/lab3/attack.s -------------------------------------------------------------------------------- /Week 06/Lab3/lab3/bang.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldfaiztt/CSE351/HEAD/Week 06/Lab3/lab3/bang.txt -------------------------------------------------------------------------------- /Week 06/Lab3/lab3/bufbomb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldfaiztt/CSE351/HEAD/Week 06/Lab3/lab3/bufbomb -------------------------------------------------------------------------------- /Week 06/Lab3/lab3/bufbomb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldfaiztt/CSE351/HEAD/Week 06/Lab3/lab3/bufbomb.c -------------------------------------------------------------------------------- /Week 06/Lab3/lab3/bufbomb.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldfaiztt/CSE351/HEAD/Week 06/Lab3/lab3/bufbomb.d -------------------------------------------------------------------------------- /Week 06/Lab3/lab3/exploit.bytes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldfaiztt/CSE351/HEAD/Week 06/Lab3/lab3/exploit.bytes -------------------------------------------------------------------------------- /Week 06/Lab3/lab3/fizz.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldfaiztt/CSE351/HEAD/Week 06/Lab3/lab3/fizz.txt -------------------------------------------------------------------------------- /Week 06/Lab3/lab3/makecookie: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldfaiztt/CSE351/HEAD/Week 06/Lab3/lab3/makecookie -------------------------------------------------------------------------------- /Week 06/Lab3/lab3/sendstring: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldfaiztt/CSE351/HEAD/Week 06/Lab3/lab3/sendstring -------------------------------------------------------------------------------- /Week 06/Lab3/lab3/smoke.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldfaiztt/CSE351/HEAD/Week 06/Lab3/lab3/smoke.txt -------------------------------------------------------------------------------- /Week 06/Lab3/lab3_spec.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldfaiztt/CSE351/HEAD/Week 06/Lab3/lab3_spec.pdf -------------------------------------------------------------------------------- /Week 07/15-caches-II.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldfaiztt/CSE351/HEAD/Week 07/15-caches-II.pdf -------------------------------------------------------------------------------- /Week 07/16-exceptional-control.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldfaiztt/CSE351/HEAD/Week 07/16-exceptional-control.pdf -------------------------------------------------------------------------------- /Week 07/17-processes.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldfaiztt/CSE351/HEAD/Week 07/17-processes.pdf -------------------------------------------------------------------------------- /Week 07/Lab4/lab4.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldfaiztt/CSE351/HEAD/Week 07/Lab4/lab4.pdf -------------------------------------------------------------------------------- /Week 07/Lab4/lab4.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldfaiztt/CSE351/HEAD/Week 07/Lab4/lab4.tar.gz -------------------------------------------------------------------------------- /Week 07/Lab4/lab4/._Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldfaiztt/CSE351/HEAD/Week 07/Lab4/lab4/._Makefile -------------------------------------------------------------------------------- /Week 07/Lab4/lab4/._cacheExperiment.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldfaiztt/CSE351/HEAD/Week 07/Lab4/lab4/._cacheExperiment.c -------------------------------------------------------------------------------- /Week 07/Lab4/lab4/._cacheExperiment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldfaiztt/CSE351/HEAD/Week 07/Lab4/lab4/._cacheExperiment.java -------------------------------------------------------------------------------- /Week 07/Lab4/lab4/._cacheExperimentInteger.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldfaiztt/CSE351/HEAD/Week 07/Lab4/lab4/._cacheExperimentInteger.java -------------------------------------------------------------------------------- /Week 07/Lab4/lab4/._cache_16c_4a_4b.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldfaiztt/CSE351/HEAD/Week 07/Lab4/lab4/._cache_16c_4a_4b.o -------------------------------------------------------------------------------- /Week 07/Lab4/lab4/._cache_32c_8a_8b.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldfaiztt/CSE351/HEAD/Week 07/Lab4/lab4/._cache_32c_8a_8b.o -------------------------------------------------------------------------------- /Week 07/Lab4/lab4/._cache_64c_2a_16b.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldfaiztt/CSE351/HEAD/Week 07/Lab4/lab4/._cache_64c_2a_16b.o -------------------------------------------------------------------------------- /Week 07/Lab4/lab4/._mystery-cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldfaiztt/CSE351/HEAD/Week 07/Lab4/lab4/._mystery-cache.h -------------------------------------------------------------------------------- /Week 07/Lab4/lab4/._mystery0.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldfaiztt/CSE351/HEAD/Week 07/Lab4/lab4/._mystery0.o -------------------------------------------------------------------------------- /Week 07/Lab4/lab4/._mystery1.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldfaiztt/CSE351/HEAD/Week 07/Lab4/lab4/._mystery1.o -------------------------------------------------------------------------------- /Week 07/Lab4/lab4/._mystery2.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldfaiztt/CSE351/HEAD/Week 07/Lab4/lab4/._mystery2.o -------------------------------------------------------------------------------- /Week 07/Lab4/lab4/._mystery3.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldfaiztt/CSE351/HEAD/Week 07/Lab4/lab4/._mystery3.o -------------------------------------------------------------------------------- /Week 07/Lab4/lab4/._run.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldfaiztt/CSE351/HEAD/Week 07/Lab4/lab4/._run.pl -------------------------------------------------------------------------------- /Week 07/Lab4/lab4/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldfaiztt/CSE351/HEAD/Week 07/Lab4/lab4/Makefile -------------------------------------------------------------------------------- /Week 07/Lab4/lab4/cache-test-skel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldfaiztt/CSE351/HEAD/Week 07/Lab4/lab4/cache-test-skel.c -------------------------------------------------------------------------------- /Week 07/Lab4/lab4/cacheExperiment.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldfaiztt/CSE351/HEAD/Week 07/Lab4/lab4/cacheExperiment.c -------------------------------------------------------------------------------- /Week 07/Lab4/lab4/cacheExperiment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldfaiztt/CSE351/HEAD/Week 07/Lab4/lab4/cacheExperiment.java -------------------------------------------------------------------------------- /Week 07/Lab4/lab4/cacheExperimentInteger.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldfaiztt/CSE351/HEAD/Week 07/Lab4/lab4/cacheExperimentInteger.java -------------------------------------------------------------------------------- /Week 07/Lab4/lab4/cache_16c_4a_4b.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldfaiztt/CSE351/HEAD/Week 07/Lab4/lab4/cache_16c_4a_4b.o -------------------------------------------------------------------------------- /Week 07/Lab4/lab4/cache_32c_8a_8b.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldfaiztt/CSE351/HEAD/Week 07/Lab4/lab4/cache_32c_8a_8b.o -------------------------------------------------------------------------------- /Week 07/Lab4/lab4/cache_64c_2a_16b.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldfaiztt/CSE351/HEAD/Week 07/Lab4/lab4/cache_64c_2a_16b.o -------------------------------------------------------------------------------- /Week 07/Lab4/lab4/extra.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldfaiztt/CSE351/HEAD/Week 07/Lab4/lab4/extra.c -------------------------------------------------------------------------------- /Week 07/Lab4/lab4/mystery-cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldfaiztt/CSE351/HEAD/Week 07/Lab4/lab4/mystery-cache.h -------------------------------------------------------------------------------- /Week 07/Lab4/lab4/mystery0.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldfaiztt/CSE351/HEAD/Week 07/Lab4/lab4/mystery0.o -------------------------------------------------------------------------------- /Week 07/Lab4/lab4/mystery1.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldfaiztt/CSE351/HEAD/Week 07/Lab4/lab4/mystery1.o -------------------------------------------------------------------------------- /Week 07/Lab4/lab4/mystery2.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldfaiztt/CSE351/HEAD/Week 07/Lab4/lab4/mystery2.o -------------------------------------------------------------------------------- /Week 07/Lab4/lab4/mystery3.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldfaiztt/CSE351/HEAD/Week 07/Lab4/lab4/mystery3.o -------------------------------------------------------------------------------- /Week 07/Lab4/lab4/run.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldfaiztt/CSE351/HEAD/Week 07/Lab4/lab4/run.pl -------------------------------------------------------------------------------- /Week 07/Lab4/lab4_spec.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldfaiztt/CSE351/HEAD/Week 07/Lab4/lab4_spec.pdf -------------------------------------------------------------------------------- /Week 07/hw3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldfaiztt/CSE351/HEAD/Week 07/hw3.pdf -------------------------------------------------------------------------------- /Week 07/hw3_spec.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldfaiztt/CSE351/HEAD/Week 07/hw3_spec.pdf -------------------------------------------------------------------------------- /Week 08/18-virtualmem-I.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldfaiztt/CSE351/HEAD/Week 08/18-virtualmem-I.pdf -------------------------------------------------------------------------------- /Week 08/19-virtualmem-II.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldfaiztt/CSE351/HEAD/Week 08/19-virtualmem-II.pdf -------------------------------------------------------------------------------- /Week 08/20-memallocation-I.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldfaiztt/CSE351/HEAD/Week 08/20-memallocation-I.pdf -------------------------------------------------------------------------------- /Week 08/hw4.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldfaiztt/CSE351/HEAD/Week 08/hw4.pdf -------------------------------------------------------------------------------- /Week 08/hw4_solution-567.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldfaiztt/CSE351/HEAD/Week 08/hw4_solution-567.pdf -------------------------------------------------------------------------------- /Week 08/hw4_spec.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldfaiztt/CSE351/HEAD/Week 08/hw4_spec.pdf -------------------------------------------------------------------------------- /Week 09/21-memallocation-II.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldfaiztt/CSE351/HEAD/Week 09/21-memallocation-II.pdf -------------------------------------------------------------------------------- /Week 09/22-memallocation-III.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldfaiztt/CSE351/HEAD/Week 09/22-memallocation-III.pdf -------------------------------------------------------------------------------- /Week 09/lab5.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldfaiztt/CSE351/HEAD/Week 09/lab5.tar.gz -------------------------------------------------------------------------------- /Week 09/lab5/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldfaiztt/CSE351/HEAD/Week 09/lab5/Makefile -------------------------------------------------------------------------------- /Week 09/lab5/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldfaiztt/CSE351/HEAD/Week 09/lab5/README -------------------------------------------------------------------------------- /Week 09/lab5/clock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldfaiztt/CSE351/HEAD/Week 09/lab5/clock.c -------------------------------------------------------------------------------- /Week 09/lab5/clock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldfaiztt/CSE351/HEAD/Week 09/lab5/clock.h -------------------------------------------------------------------------------- /Week 09/lab5/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldfaiztt/CSE351/HEAD/Week 09/lab5/config.h -------------------------------------------------------------------------------- /Week 09/lab5/fcyc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldfaiztt/CSE351/HEAD/Week 09/lab5/fcyc.c -------------------------------------------------------------------------------- /Week 09/lab5/fcyc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldfaiztt/CSE351/HEAD/Week 09/lab5/fcyc.h -------------------------------------------------------------------------------- /Week 09/lab5/fsecs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldfaiztt/CSE351/HEAD/Week 09/lab5/fsecs.c -------------------------------------------------------------------------------- /Week 09/lab5/fsecs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldfaiztt/CSE351/HEAD/Week 09/lab5/fsecs.h -------------------------------------------------------------------------------- /Week 09/lab5/ftimer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldfaiztt/CSE351/HEAD/Week 09/lab5/ftimer.c -------------------------------------------------------------------------------- /Week 09/lab5/ftimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldfaiztt/CSE351/HEAD/Week 09/lab5/ftimer.h -------------------------------------------------------------------------------- /Week 09/lab5/mdriver-realloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldfaiztt/CSE351/HEAD/Week 09/lab5/mdriver-realloc.c -------------------------------------------------------------------------------- /Week 09/lab5/mdriver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldfaiztt/CSE351/HEAD/Week 09/lab5/mdriver.c -------------------------------------------------------------------------------- /Week 09/lab5/memlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldfaiztt/CSE351/HEAD/Week 09/lab5/memlib.c -------------------------------------------------------------------------------- /Week 09/lab5/memlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldfaiztt/CSE351/HEAD/Week 09/lab5/memlib.h -------------------------------------------------------------------------------- /Week 09/lab5/mm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldfaiztt/CSE351/HEAD/Week 09/lab5/mm.c -------------------------------------------------------------------------------- /Week 09/lab5/mm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldfaiztt/CSE351/HEAD/Week 09/lab5/mm.h -------------------------------------------------------------------------------- /Week 09/lab5/traces/amptjp-bal.rep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldfaiztt/CSE351/HEAD/Week 09/lab5/traces/amptjp-bal.rep -------------------------------------------------------------------------------- /Week 09/lab5/traces/binary-bal.rep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldfaiztt/CSE351/HEAD/Week 09/lab5/traces/binary-bal.rep -------------------------------------------------------------------------------- /Week 09/lab5/traces/binary2-bal.rep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldfaiztt/CSE351/HEAD/Week 09/lab5/traces/binary2-bal.rep -------------------------------------------------------------------------------- /Week 09/lab5/traces/cccp-bal.rep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldfaiztt/CSE351/HEAD/Week 09/lab5/traces/cccp-bal.rep -------------------------------------------------------------------------------- /Week 09/lab5/traces/coalescing-bal.rep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldfaiztt/CSE351/HEAD/Week 09/lab5/traces/coalescing-bal.rep -------------------------------------------------------------------------------- /Week 09/lab5/traces/cp-decl-bal.rep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldfaiztt/CSE351/HEAD/Week 09/lab5/traces/cp-decl-bal.rep -------------------------------------------------------------------------------- /Week 09/lab5/traces/expr-bal.rep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldfaiztt/CSE351/HEAD/Week 09/lab5/traces/expr-bal.rep -------------------------------------------------------------------------------- /Week 09/lab5/traces/random-bal.rep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldfaiztt/CSE351/HEAD/Week 09/lab5/traces/random-bal.rep -------------------------------------------------------------------------------- /Week 09/lab5/traces/random2-bal.rep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldfaiztt/CSE351/HEAD/Week 09/lab5/traces/random2-bal.rep -------------------------------------------------------------------------------- /Week 09/lab5/traces/realloc-bal.rep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldfaiztt/CSE351/HEAD/Week 09/lab5/traces/realloc-bal.rep -------------------------------------------------------------------------------- /Week 09/lab5/traces/realloc2-bal.rep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldfaiztt/CSE351/HEAD/Week 09/lab5/traces/realloc2-bal.rep -------------------------------------------------------------------------------- /Week 09/lab5/traces/short1-bal.rep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldfaiztt/CSE351/HEAD/Week 09/lab5/traces/short1-bal.rep -------------------------------------------------------------------------------- /Week 09/lab5/traces/short2-bal.rep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldfaiztt/CSE351/HEAD/Week 09/lab5/traces/short2-bal.rep -------------------------------------------------------------------------------- /Week 09/lab5_spec.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldfaiztt/CSE351/HEAD/Week 09/lab5_spec.pdf -------------------------------------------------------------------------------- /Week 09/stack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldfaiztt/CSE351/HEAD/Week 09/stack.c -------------------------------------------------------------------------------- /Week 10/23-java.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldfaiztt/CSE351/HEAD/Week 10/23-java.pdf -------------------------------------------------------------------------------- /Week 10/24-wrapup.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldfaiztt/CSE351/HEAD/Week 10/24-wrapup.pdf --------------------------------------------------------------------------------