├── .gitignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── gh-intro-mhd.png ├── src ├── .gitignore ├── .vscode │ └── asm.json.code-snippets ├── Code │ ├── Assignment │ │ └── 1 │ │ │ ├── q1.asm │ │ │ ├── q2.asm │ │ │ ├── q3.asm │ │ │ └── temp.asm │ ├── Book │ │ ├── Bit-Manipulation-and-Subroutines │ │ │ ├── chp4_01.asm │ │ │ ├── chp4_03.asm │ │ │ ├── chp4_04.asm │ │ │ ├── chp4_05.asm │ │ │ ├── chp4_06.asm │ │ │ ├── chp4_07.asm │ │ │ ├── chp4_08.asm │ │ │ ├── chp5_03.asm │ │ │ ├── chp5_04.asm │ │ │ ├── chp5_05.asm │ │ │ └── chp5_08.asm │ │ ├── Ch-5 Local variables │ │ │ └── q2.asm │ │ ├── Ch-6-Display-Memory │ │ │ ├── bin-no-print.asm │ │ │ ├── clearscreen.asm │ │ │ └── de-no-print.asm │ │ ├── Exercise-Solutions │ │ │ ├── chp10_01.asm │ │ │ ├── chp10_04.asm │ │ │ ├── chp2_09a.asm │ │ │ ├── chp2_09b.asm │ │ │ ├── chp2_09c.asm │ │ │ ├── chp2_10.asm │ │ │ ├── chp3_04.asm │ │ │ ├── chp3_05.asm │ │ │ ├── chp3_06.asm │ │ │ ├── chp4_01.asm │ │ │ ├── chp4_03.asm │ │ │ ├── chp4_04.asm │ │ │ ├── chp4_05.asm │ │ │ ├── chp4_06.asm │ │ │ ├── chp4_07.asm │ │ │ ├── chp4_08.asm │ │ │ ├── chp5_03.asm │ │ │ ├── chp5_04.asm │ │ │ ├── chp5_05.asm │ │ │ ├── chp5_06.asm │ │ │ ├── chp5_07.asm │ │ │ ├── chp5_08.asm │ │ │ ├── chp6_02.asm │ │ │ ├── chp6_03.asm │ │ │ ├── chp6_04.asm │ │ │ ├── chp6_05.asm │ │ │ ├── chp7_01.asm │ │ │ ├── chp7_02.asm │ │ │ ├── chp7_03.asm │ │ │ ├── chp7_04.asm │ │ │ ├── chp7_05.asm │ │ │ ├── chp7_06.asm │ │ │ ├── chp8_01.asm │ │ │ ├── chp8_02.asm │ │ │ ├── chp8_03.asm │ │ │ ├── chp9_03.asm │ │ │ ├── chp9_08.asm │ │ │ └── chp9_11.asm │ │ ├── Graphical-Display-Memory-and-Software_Hardware-Interrupts │ │ │ ├── q1.asm │ │ │ ├── q2.asm │ │ │ ├── q3.asm │ │ │ ├── q4.asm │ │ │ ├── q5.asm │ │ │ ├── q6.asm │ │ │ └── q7.asm │ │ ├── Intel- Solution-Manual.pdf │ │ └── Stop-Watch_x86 │ │ │ ├── assembly_code │ │ │ └── timer.asm │ │ │ └── images │ │ │ ├── p1.png │ │ │ └── p2.png │ ├── Labs │ │ ├── Lab-1 │ │ │ ├── Lab manual 1.docx │ │ │ ├── Post Lab Manual 01.docx │ │ │ └── q1.asm │ │ ├── Lab-10 │ │ │ ├── Lab 10.docx │ │ │ ├── q1.asm │ │ │ ├── q2.asm │ │ │ └── temp.asm │ │ ├── Lab-2 │ │ │ ├── Lab Manual 02.docx │ │ │ ├── q1.asm │ │ │ ├── q2.asm │ │ │ └── q3.asm │ │ ├── Lab-3 │ │ │ ├── Lab 03(Section L).docx │ │ │ ├── q1.asm │ │ │ ├── q2.asm │ │ │ ├── q3.asm │ │ │ └── q4.asm │ │ ├── Lab-4 │ │ │ ├── Lab manual 4 (L section).docx │ │ │ └── q1.asm │ │ ├── Lab-5 │ │ │ ├── Lab 05.docx │ │ │ ├── q1.asm │ │ │ ├── q2.asm │ │ │ ├── q3.asm │ │ │ └── q4.asm │ │ ├── Lab-6 │ │ │ ├── Lab 6-COAL (L).docx │ │ │ ├── Q1.asm │ │ │ ├── my-q1.asm │ │ │ ├── my-q2.asm │ │ │ └── q2.asm │ │ ├── Lab-7 │ │ │ ├── 21L-8908 lab 7.docx │ │ │ ├── Lab 7-COAL L.docx │ │ │ ├── my-q1.asm │ │ │ ├── q1.asm │ │ │ ├── q2.asm │ │ │ └── q3.asm │ │ ├── Lab-8 │ │ │ ├── Lab 8.docx │ │ │ ├── q1.asm │ │ │ ├── q2.asm │ │ │ └── q3.asm │ │ ├── Quiz │ │ │ └── quiz-1 │ │ │ │ ├── Quiz-1(Assembly language lab).docx │ │ │ │ ├── multiplication.asm │ │ │ │ ├── q1.asm │ │ │ │ ├── q2.asm │ │ │ │ └── q3.asm │ │ └── Section-A-Labs │ │ │ └── Ali-Labs │ │ │ ├── 21L-7646 Muhammad Ali Butt(1).docx │ │ │ ├── 21L-7646 Muhammad Ali Butt(2).docx │ │ │ ├── 21L-7646 Muhammad Ali Butt(3).docx │ │ │ ├── 21L-7646 Muhammad Ali Butt(4).docx │ │ │ ├── 21L-7646 Muhammad Ali Butt(5).docx │ │ │ └── Lab-2 │ │ │ ├── Q1.asm │ │ │ ├── Q2.asm │ │ │ ├── Q3.asm │ │ │ └── Q4.asm │ └── assembly-lang-course │ │ ├── AssmSoft.zip │ │ ├── c01-01.asm │ │ ├── c02-01.asm │ │ ├── c02-02.asm │ │ ├── c02-03.asm │ │ ├── c02-04.asm │ │ ├── c02-05.asm │ │ ├── c02-06.asm │ │ ├── c02-06b.asm │ │ ├── c02-06c.asm │ │ ├── c02-07.asm │ │ ├── c02-07b.asm │ │ ├── c02-08.asm │ │ ├── c02-09.asm │ │ ├── c02-10.asm │ │ ├── c03-01.asm │ │ ├── c03-01b.asm │ │ ├── c04-01.asm │ │ ├── c04-02.asm │ │ ├── c04-03.asm │ │ ├── c05-01.asm │ │ ├── c06-01.asm │ │ ├── c06-02.asm │ │ ├── c06-03.asm │ │ ├── c06-04.asm │ │ ├── c06-05.asm │ │ ├── c07-01.asm │ │ ├── c07-02.asm │ │ ├── c07-03.asm │ │ ├── c07-04.asm │ │ ├── c08-01.asm │ │ ├── c08-02.asm │ │ ├── c09-01.asm │ │ ├── c09-01.c │ │ ├── c10-01.sh │ │ ├── q1.asm │ │ ├── r01-01.S.s │ │ ├── r01-02.S.s │ │ └── temp.asm ├── Final-Exam │ ├── 19L-2313-Q1.asm │ ├── 9-8.asm │ ├── CTS.asm │ ├── Scroll-Left.asm │ ├── Scroll-Right.asm │ ├── TSR.asm │ ├── Timer.asm │ ├── ascii.asm │ ├── carry.asm │ ├── code.asm │ ├── content.asm │ ├── mul.asm │ ├── snek.asm │ └── temp.asm ├── LAB-FINAL │ ├── L11q1.asm │ ├── diamond.txt │ ├── l10q1.asm │ ├── l10q2.asm │ ├── l9q1.asm │ ├── l9q2.asm │ └── l9q4.asm ├── Lab-12 │ ├── Q1 │ ├── q1.asm │ ├── q2.asm │ └── q3.asm ├── Practice │ ├── 1.asm │ ├── 2.asm │ ├── 3.asm │ ├── 4.asm │ ├── COAL Display & Interrupt Practice │ │ ├── 21L-7646 Lab 7.pdf │ │ ├── 21L-7646 Muhammad Ali Butt(10).docx │ │ ├── COAL_Lab11D.pdf │ │ ├── COAL_Lab7.pdf │ │ ├── COAL_Lab8.pdf │ │ ├── COAL_Lab9.docx │ │ ├── COAL_Lab9.pdf │ │ ├── COAL_Lab_Quiz_2.pdf │ │ ├── L8Q.asm │ │ ├── L9A1.asm │ │ ├── L9A4.asm │ │ ├── Quiz2A1.asm │ │ └── Quiz2A2.asm │ └── quiz.asm ├── Project │ ├── Helping codespdf.pdf │ ├── KB │ ├── MAHAD │ ├── MyKeyBoard.asm │ ├── P │ ├── PC.OM │ ├── a.asm │ ├── candy crush.txt │ ├── game.asm │ ├── kbisr.asm │ ├── m.asm │ ├── mouse_int.asm │ ├── p.asm │ ├── temp.asm │ ├── temp2.asm │ ├── temp3.asm │ ├── tictactoe.asm │ └── z.asm ├── QUIZ │ ├── circle.asm │ ├── q1.asm │ └── q2.asm ├── Raham │ ├── complete.asm │ ├── incomplete.asm │ ├── q1.asm │ ├── q2.asm │ └── q3.asm ├── Scan Codes.pdf ├── a.asm ├── a3.asm ├── aa.asm ├── q1.asm ├── q2.asm ├── q3.asm ├── q4.asm ├── temp.asm └── timer.asm └── workspace ├── AFD.EXE ├── DOSBoxPortable ├── App │ ├── AppInfo │ │ ├── appicon.ico │ │ ├── appicon_128.png │ │ ├── appicon_16.png │ │ ├── appicon_32.png │ │ ├── appinfo.ini │ │ └── installer.ini │ ├── DOSBox │ │ ├── DOSBox 0.74 Manual.txt │ │ ├── DOSBox 0.74 Options.bat │ │ ├── DOSBox.exe │ │ ├── Documentation │ │ │ ├── AUTHORS.txt │ │ │ ├── COPYING.txt │ │ │ ├── INSTALL.txt │ │ │ ├── NEWS.txt │ │ │ ├── README.txt │ │ │ └── THANKS.txt │ │ ├── Reset KeyMapper.bat │ │ ├── Reset Options.bat │ │ ├── SDL.dll │ │ ├── SDL_net.dll │ │ ├── Screenshots _ Recordings.bat │ │ └── Video Codec │ │ │ ├── Video Instructions.txt │ │ │ ├── zmbv.dll │ │ │ └── zmbv.inf │ └── DefaultData │ │ └── settings │ │ └── dosbox.conf ├── DOSBoxPortable.exe ├── Data │ └── settings │ │ ├── dosbox.conf │ │ └── dosbox.conf.bak ├── Other │ ├── Help │ │ └── images │ │ │ ├── donation_button.png │ │ │ ├── favicon.ico │ │ │ ├── help_background_footer.png │ │ │ ├── help_background_header.png │ │ │ └── help_logo_top.png │ └── Source │ │ ├── AppSource.txt │ │ ├── CheckForPlatformSplashDisable.nsh │ │ ├── DOSBoxPortable.ini │ │ ├── DOSBoxPortable.jpg │ │ ├── DOSBoxPortable.nsi │ │ ├── License.txt │ │ ├── ReadINIStrWithDefault.nsh │ │ └── Readme.txt └── help.html ├── README.md ├── hello.asm └── nasm.exe /.gitignore: -------------------------------------------------------------------------------- 1 | *.COM 2 | *.conf 3 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/README.md -------------------------------------------------------------------------------- /gh-intro-mhd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/gh-intro-mhd.png -------------------------------------------------------------------------------- /src/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/src/.gitignore -------------------------------------------------------------------------------- /src/.vscode/asm.json.code-snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/src/.vscode/asm.json.code-snippets -------------------------------------------------------------------------------- /src/Code/Assignment/1/q1.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/src/Code/Assignment/1/q1.asm -------------------------------------------------------------------------------- /src/Code/Assignment/1/q2.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/src/Code/Assignment/1/q2.asm -------------------------------------------------------------------------------- /src/Code/Assignment/1/q3.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/src/Code/Assignment/1/q3.asm -------------------------------------------------------------------------------- /src/Code/Assignment/1/temp.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/src/Code/Assignment/1/temp.asm -------------------------------------------------------------------------------- /src/Code/Book/Bit-Manipulation-and-Subroutines/chp4_01.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/src/Code/Book/Bit-Manipulation-and-Subroutines/chp4_01.asm -------------------------------------------------------------------------------- /src/Code/Book/Bit-Manipulation-and-Subroutines/chp4_03.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/src/Code/Book/Bit-Manipulation-and-Subroutines/chp4_03.asm -------------------------------------------------------------------------------- /src/Code/Book/Bit-Manipulation-and-Subroutines/chp4_04.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/src/Code/Book/Bit-Manipulation-and-Subroutines/chp4_04.asm -------------------------------------------------------------------------------- /src/Code/Book/Bit-Manipulation-and-Subroutines/chp4_05.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/src/Code/Book/Bit-Manipulation-and-Subroutines/chp4_05.asm -------------------------------------------------------------------------------- /src/Code/Book/Bit-Manipulation-and-Subroutines/chp4_06.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/src/Code/Book/Bit-Manipulation-and-Subroutines/chp4_06.asm -------------------------------------------------------------------------------- /src/Code/Book/Bit-Manipulation-and-Subroutines/chp4_07.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/src/Code/Book/Bit-Manipulation-and-Subroutines/chp4_07.asm -------------------------------------------------------------------------------- /src/Code/Book/Bit-Manipulation-and-Subroutines/chp4_08.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/src/Code/Book/Bit-Manipulation-and-Subroutines/chp4_08.asm -------------------------------------------------------------------------------- /src/Code/Book/Bit-Manipulation-and-Subroutines/chp5_03.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/src/Code/Book/Bit-Manipulation-and-Subroutines/chp5_03.asm -------------------------------------------------------------------------------- /src/Code/Book/Bit-Manipulation-and-Subroutines/chp5_04.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/src/Code/Book/Bit-Manipulation-and-Subroutines/chp5_04.asm -------------------------------------------------------------------------------- /src/Code/Book/Bit-Manipulation-and-Subroutines/chp5_05.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/src/Code/Book/Bit-Manipulation-and-Subroutines/chp5_05.asm -------------------------------------------------------------------------------- /src/Code/Book/Bit-Manipulation-and-Subroutines/chp5_08.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/src/Code/Book/Bit-Manipulation-and-Subroutines/chp5_08.asm -------------------------------------------------------------------------------- /src/Code/Book/Ch-5 Local variables/q2.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/src/Code/Book/Ch-5 Local variables/q2.asm -------------------------------------------------------------------------------- /src/Code/Book/Ch-6-Display-Memory/bin-no-print.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/src/Code/Book/Ch-6-Display-Memory/bin-no-print.asm -------------------------------------------------------------------------------- /src/Code/Book/Ch-6-Display-Memory/clearscreen.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/src/Code/Book/Ch-6-Display-Memory/clearscreen.asm -------------------------------------------------------------------------------- /src/Code/Book/Ch-6-Display-Memory/de-no-print.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/src/Code/Book/Ch-6-Display-Memory/de-no-print.asm -------------------------------------------------------------------------------- /src/Code/Book/Exercise-Solutions/chp10_01.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/src/Code/Book/Exercise-Solutions/chp10_01.asm -------------------------------------------------------------------------------- /src/Code/Book/Exercise-Solutions/chp10_04.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/src/Code/Book/Exercise-Solutions/chp10_04.asm -------------------------------------------------------------------------------- /src/Code/Book/Exercise-Solutions/chp2_09a.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/src/Code/Book/Exercise-Solutions/chp2_09a.asm -------------------------------------------------------------------------------- /src/Code/Book/Exercise-Solutions/chp2_09b.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/src/Code/Book/Exercise-Solutions/chp2_09b.asm -------------------------------------------------------------------------------- /src/Code/Book/Exercise-Solutions/chp2_09c.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/src/Code/Book/Exercise-Solutions/chp2_09c.asm -------------------------------------------------------------------------------- /src/Code/Book/Exercise-Solutions/chp2_10.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/src/Code/Book/Exercise-Solutions/chp2_10.asm -------------------------------------------------------------------------------- /src/Code/Book/Exercise-Solutions/chp3_04.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/src/Code/Book/Exercise-Solutions/chp3_04.asm -------------------------------------------------------------------------------- /src/Code/Book/Exercise-Solutions/chp3_05.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/src/Code/Book/Exercise-Solutions/chp3_05.asm -------------------------------------------------------------------------------- /src/Code/Book/Exercise-Solutions/chp3_06.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/src/Code/Book/Exercise-Solutions/chp3_06.asm -------------------------------------------------------------------------------- /src/Code/Book/Exercise-Solutions/chp4_01.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/src/Code/Book/Exercise-Solutions/chp4_01.asm -------------------------------------------------------------------------------- /src/Code/Book/Exercise-Solutions/chp4_03.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/src/Code/Book/Exercise-Solutions/chp4_03.asm -------------------------------------------------------------------------------- /src/Code/Book/Exercise-Solutions/chp4_04.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/src/Code/Book/Exercise-Solutions/chp4_04.asm -------------------------------------------------------------------------------- /src/Code/Book/Exercise-Solutions/chp4_05.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/src/Code/Book/Exercise-Solutions/chp4_05.asm -------------------------------------------------------------------------------- /src/Code/Book/Exercise-Solutions/chp4_06.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/src/Code/Book/Exercise-Solutions/chp4_06.asm -------------------------------------------------------------------------------- /src/Code/Book/Exercise-Solutions/chp4_07.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/src/Code/Book/Exercise-Solutions/chp4_07.asm -------------------------------------------------------------------------------- /src/Code/Book/Exercise-Solutions/chp4_08.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/src/Code/Book/Exercise-Solutions/chp4_08.asm -------------------------------------------------------------------------------- /src/Code/Book/Exercise-Solutions/chp5_03.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/src/Code/Book/Exercise-Solutions/chp5_03.asm -------------------------------------------------------------------------------- /src/Code/Book/Exercise-Solutions/chp5_04.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/src/Code/Book/Exercise-Solutions/chp5_04.asm -------------------------------------------------------------------------------- /src/Code/Book/Exercise-Solutions/chp5_05.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/src/Code/Book/Exercise-Solutions/chp5_05.asm -------------------------------------------------------------------------------- /src/Code/Book/Exercise-Solutions/chp5_06.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/src/Code/Book/Exercise-Solutions/chp5_06.asm -------------------------------------------------------------------------------- /src/Code/Book/Exercise-Solutions/chp5_07.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/src/Code/Book/Exercise-Solutions/chp5_07.asm -------------------------------------------------------------------------------- /src/Code/Book/Exercise-Solutions/chp5_08.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/src/Code/Book/Exercise-Solutions/chp5_08.asm -------------------------------------------------------------------------------- /src/Code/Book/Exercise-Solutions/chp6_02.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/src/Code/Book/Exercise-Solutions/chp6_02.asm -------------------------------------------------------------------------------- /src/Code/Book/Exercise-Solutions/chp6_03.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/src/Code/Book/Exercise-Solutions/chp6_03.asm -------------------------------------------------------------------------------- /src/Code/Book/Exercise-Solutions/chp6_04.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/src/Code/Book/Exercise-Solutions/chp6_04.asm -------------------------------------------------------------------------------- /src/Code/Book/Exercise-Solutions/chp6_05.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/src/Code/Book/Exercise-Solutions/chp6_05.asm -------------------------------------------------------------------------------- /src/Code/Book/Exercise-Solutions/chp7_01.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/src/Code/Book/Exercise-Solutions/chp7_01.asm -------------------------------------------------------------------------------- /src/Code/Book/Exercise-Solutions/chp7_02.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/src/Code/Book/Exercise-Solutions/chp7_02.asm -------------------------------------------------------------------------------- /src/Code/Book/Exercise-Solutions/chp7_03.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/src/Code/Book/Exercise-Solutions/chp7_03.asm -------------------------------------------------------------------------------- /src/Code/Book/Exercise-Solutions/chp7_04.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/src/Code/Book/Exercise-Solutions/chp7_04.asm -------------------------------------------------------------------------------- /src/Code/Book/Exercise-Solutions/chp7_05.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/src/Code/Book/Exercise-Solutions/chp7_05.asm -------------------------------------------------------------------------------- /src/Code/Book/Exercise-Solutions/chp7_06.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/src/Code/Book/Exercise-Solutions/chp7_06.asm -------------------------------------------------------------------------------- /src/Code/Book/Exercise-Solutions/chp8_01.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/src/Code/Book/Exercise-Solutions/chp8_01.asm -------------------------------------------------------------------------------- /src/Code/Book/Exercise-Solutions/chp8_02.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/src/Code/Book/Exercise-Solutions/chp8_02.asm -------------------------------------------------------------------------------- /src/Code/Book/Exercise-Solutions/chp8_03.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/src/Code/Book/Exercise-Solutions/chp8_03.asm -------------------------------------------------------------------------------- /src/Code/Book/Exercise-Solutions/chp9_03.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/src/Code/Book/Exercise-Solutions/chp9_03.asm -------------------------------------------------------------------------------- /src/Code/Book/Exercise-Solutions/chp9_08.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/src/Code/Book/Exercise-Solutions/chp9_08.asm -------------------------------------------------------------------------------- /src/Code/Book/Exercise-Solutions/chp9_11.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/src/Code/Book/Exercise-Solutions/chp9_11.asm -------------------------------------------------------------------------------- /src/Code/Book/Graphical-Display-Memory-and-Software_Hardware-Interrupts/q1.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/src/Code/Book/Graphical-Display-Memory-and-Software_Hardware-Interrupts/q1.asm -------------------------------------------------------------------------------- /src/Code/Book/Graphical-Display-Memory-and-Software_Hardware-Interrupts/q2.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/src/Code/Book/Graphical-Display-Memory-and-Software_Hardware-Interrupts/q2.asm -------------------------------------------------------------------------------- /src/Code/Book/Graphical-Display-Memory-and-Software_Hardware-Interrupts/q3.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/src/Code/Book/Graphical-Display-Memory-and-Software_Hardware-Interrupts/q3.asm -------------------------------------------------------------------------------- /src/Code/Book/Graphical-Display-Memory-and-Software_Hardware-Interrupts/q4.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/src/Code/Book/Graphical-Display-Memory-and-Software_Hardware-Interrupts/q4.asm -------------------------------------------------------------------------------- /src/Code/Book/Graphical-Display-Memory-and-Software_Hardware-Interrupts/q5.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/src/Code/Book/Graphical-Display-Memory-and-Software_Hardware-Interrupts/q5.asm -------------------------------------------------------------------------------- /src/Code/Book/Graphical-Display-Memory-and-Software_Hardware-Interrupts/q6.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/src/Code/Book/Graphical-Display-Memory-and-Software_Hardware-Interrupts/q6.asm -------------------------------------------------------------------------------- /src/Code/Book/Graphical-Display-Memory-and-Software_Hardware-Interrupts/q7.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/src/Code/Book/Graphical-Display-Memory-and-Software_Hardware-Interrupts/q7.asm -------------------------------------------------------------------------------- /src/Code/Book/Intel- Solution-Manual.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/src/Code/Book/Intel- Solution-Manual.pdf -------------------------------------------------------------------------------- /src/Code/Book/Stop-Watch_x86/assembly_code/timer.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/src/Code/Book/Stop-Watch_x86/assembly_code/timer.asm -------------------------------------------------------------------------------- /src/Code/Book/Stop-Watch_x86/images/p1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/src/Code/Book/Stop-Watch_x86/images/p1.png -------------------------------------------------------------------------------- /src/Code/Book/Stop-Watch_x86/images/p2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/src/Code/Book/Stop-Watch_x86/images/p2.png -------------------------------------------------------------------------------- /src/Code/Labs/Lab-1/Lab manual 1.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/src/Code/Labs/Lab-1/Lab manual 1.docx -------------------------------------------------------------------------------- /src/Code/Labs/Lab-1/Post Lab Manual 01.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/src/Code/Labs/Lab-1/Post Lab Manual 01.docx -------------------------------------------------------------------------------- /src/Code/Labs/Lab-1/q1.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/src/Code/Labs/Lab-1/q1.asm -------------------------------------------------------------------------------- /src/Code/Labs/Lab-10/Lab 10.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/src/Code/Labs/Lab-10/Lab 10.docx -------------------------------------------------------------------------------- /src/Code/Labs/Lab-10/q1.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/src/Code/Labs/Lab-10/q1.asm -------------------------------------------------------------------------------- /src/Code/Labs/Lab-10/q2.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/src/Code/Labs/Lab-10/q2.asm -------------------------------------------------------------------------------- /src/Code/Labs/Lab-10/temp.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/src/Code/Labs/Lab-10/temp.asm -------------------------------------------------------------------------------- /src/Code/Labs/Lab-2/Lab Manual 02.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/src/Code/Labs/Lab-2/Lab Manual 02.docx -------------------------------------------------------------------------------- /src/Code/Labs/Lab-2/q1.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/src/Code/Labs/Lab-2/q1.asm -------------------------------------------------------------------------------- /src/Code/Labs/Lab-2/q2.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/src/Code/Labs/Lab-2/q2.asm -------------------------------------------------------------------------------- /src/Code/Labs/Lab-2/q3.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/src/Code/Labs/Lab-2/q3.asm -------------------------------------------------------------------------------- /src/Code/Labs/Lab-3/Lab 03(Section L).docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/src/Code/Labs/Lab-3/Lab 03(Section L).docx -------------------------------------------------------------------------------- /src/Code/Labs/Lab-3/q1.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/src/Code/Labs/Lab-3/q1.asm -------------------------------------------------------------------------------- /src/Code/Labs/Lab-3/q2.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/src/Code/Labs/Lab-3/q2.asm -------------------------------------------------------------------------------- /src/Code/Labs/Lab-3/q3.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/src/Code/Labs/Lab-3/q3.asm -------------------------------------------------------------------------------- /src/Code/Labs/Lab-3/q4.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/src/Code/Labs/Lab-3/q4.asm -------------------------------------------------------------------------------- /src/Code/Labs/Lab-4/Lab manual 4 (L section).docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/src/Code/Labs/Lab-4/Lab manual 4 (L section).docx -------------------------------------------------------------------------------- /src/Code/Labs/Lab-4/q1.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/src/Code/Labs/Lab-4/q1.asm -------------------------------------------------------------------------------- /src/Code/Labs/Lab-5/Lab 05.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/src/Code/Labs/Lab-5/Lab 05.docx -------------------------------------------------------------------------------- /src/Code/Labs/Lab-5/q1.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/src/Code/Labs/Lab-5/q1.asm -------------------------------------------------------------------------------- /src/Code/Labs/Lab-5/q2.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/src/Code/Labs/Lab-5/q2.asm -------------------------------------------------------------------------------- /src/Code/Labs/Lab-5/q3.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/src/Code/Labs/Lab-5/q3.asm -------------------------------------------------------------------------------- /src/Code/Labs/Lab-5/q4.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/src/Code/Labs/Lab-5/q4.asm -------------------------------------------------------------------------------- /src/Code/Labs/Lab-6/Lab 6-COAL (L).docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/src/Code/Labs/Lab-6/Lab 6-COAL (L).docx -------------------------------------------------------------------------------- /src/Code/Labs/Lab-6/Q1.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/src/Code/Labs/Lab-6/Q1.asm -------------------------------------------------------------------------------- /src/Code/Labs/Lab-6/my-q1.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/src/Code/Labs/Lab-6/my-q1.asm -------------------------------------------------------------------------------- /src/Code/Labs/Lab-6/my-q2.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/src/Code/Labs/Lab-6/my-q2.asm -------------------------------------------------------------------------------- /src/Code/Labs/Lab-6/q2.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/src/Code/Labs/Lab-6/q2.asm -------------------------------------------------------------------------------- /src/Code/Labs/Lab-7/21L-8908 lab 7.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/src/Code/Labs/Lab-7/21L-8908 lab 7.docx -------------------------------------------------------------------------------- /src/Code/Labs/Lab-7/Lab 7-COAL L.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/src/Code/Labs/Lab-7/Lab 7-COAL L.docx -------------------------------------------------------------------------------- /src/Code/Labs/Lab-7/my-q1.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/src/Code/Labs/Lab-7/my-q1.asm -------------------------------------------------------------------------------- /src/Code/Labs/Lab-7/q1.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/src/Code/Labs/Lab-7/q1.asm -------------------------------------------------------------------------------- /src/Code/Labs/Lab-7/q2.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/src/Code/Labs/Lab-7/q2.asm -------------------------------------------------------------------------------- /src/Code/Labs/Lab-7/q3.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/src/Code/Labs/Lab-7/q3.asm -------------------------------------------------------------------------------- /src/Code/Labs/Lab-8/Lab 8.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/src/Code/Labs/Lab-8/Lab 8.docx -------------------------------------------------------------------------------- /src/Code/Labs/Lab-8/q1.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/src/Code/Labs/Lab-8/q1.asm -------------------------------------------------------------------------------- /src/Code/Labs/Lab-8/q2.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/src/Code/Labs/Lab-8/q2.asm -------------------------------------------------------------------------------- /src/Code/Labs/Lab-8/q3.asm: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Code/Labs/Quiz/quiz-1/Quiz-1(Assembly language lab).docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/src/Code/Labs/Quiz/quiz-1/Quiz-1(Assembly language lab).docx -------------------------------------------------------------------------------- /src/Code/Labs/Quiz/quiz-1/multiplication.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/src/Code/Labs/Quiz/quiz-1/multiplication.asm -------------------------------------------------------------------------------- /src/Code/Labs/Quiz/quiz-1/q1.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/src/Code/Labs/Quiz/quiz-1/q1.asm -------------------------------------------------------------------------------- /src/Code/Labs/Quiz/quiz-1/q2.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/src/Code/Labs/Quiz/quiz-1/q2.asm -------------------------------------------------------------------------------- /src/Code/Labs/Quiz/quiz-1/q3.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/src/Code/Labs/Quiz/quiz-1/q3.asm -------------------------------------------------------------------------------- /src/Code/Labs/Section-A-Labs/Ali-Labs/21L-7646 Muhammad Ali Butt(1).docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/src/Code/Labs/Section-A-Labs/Ali-Labs/21L-7646 Muhammad Ali Butt(1).docx -------------------------------------------------------------------------------- /src/Code/Labs/Section-A-Labs/Ali-Labs/21L-7646 Muhammad Ali Butt(2).docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/src/Code/Labs/Section-A-Labs/Ali-Labs/21L-7646 Muhammad Ali Butt(2).docx -------------------------------------------------------------------------------- /src/Code/Labs/Section-A-Labs/Ali-Labs/21L-7646 Muhammad Ali Butt(3).docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/src/Code/Labs/Section-A-Labs/Ali-Labs/21L-7646 Muhammad Ali Butt(3).docx -------------------------------------------------------------------------------- /src/Code/Labs/Section-A-Labs/Ali-Labs/21L-7646 Muhammad Ali Butt(4).docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/src/Code/Labs/Section-A-Labs/Ali-Labs/21L-7646 Muhammad Ali Butt(4).docx -------------------------------------------------------------------------------- /src/Code/Labs/Section-A-Labs/Ali-Labs/21L-7646 Muhammad Ali Butt(5).docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/src/Code/Labs/Section-A-Labs/Ali-Labs/21L-7646 Muhammad Ali Butt(5).docx -------------------------------------------------------------------------------- /src/Code/Labs/Section-A-Labs/Ali-Labs/Lab-2/Q1.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/src/Code/Labs/Section-A-Labs/Ali-Labs/Lab-2/Q1.asm -------------------------------------------------------------------------------- /src/Code/Labs/Section-A-Labs/Ali-Labs/Lab-2/Q2.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/src/Code/Labs/Section-A-Labs/Ali-Labs/Lab-2/Q2.asm -------------------------------------------------------------------------------- /src/Code/Labs/Section-A-Labs/Ali-Labs/Lab-2/Q3.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/src/Code/Labs/Section-A-Labs/Ali-Labs/Lab-2/Q3.asm -------------------------------------------------------------------------------- /src/Code/Labs/Section-A-Labs/Ali-Labs/Lab-2/Q4.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/src/Code/Labs/Section-A-Labs/Ali-Labs/Lab-2/Q4.asm -------------------------------------------------------------------------------- /src/Code/assembly-lang-course/AssmSoft.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/src/Code/assembly-lang-course/AssmSoft.zip -------------------------------------------------------------------------------- /src/Code/assembly-lang-course/c01-01.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/src/Code/assembly-lang-course/c01-01.asm -------------------------------------------------------------------------------- /src/Code/assembly-lang-course/c02-01.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/src/Code/assembly-lang-course/c02-01.asm -------------------------------------------------------------------------------- /src/Code/assembly-lang-course/c02-02.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/src/Code/assembly-lang-course/c02-02.asm -------------------------------------------------------------------------------- /src/Code/assembly-lang-course/c02-03.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/src/Code/assembly-lang-course/c02-03.asm -------------------------------------------------------------------------------- /src/Code/assembly-lang-course/c02-04.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/src/Code/assembly-lang-course/c02-04.asm -------------------------------------------------------------------------------- /src/Code/assembly-lang-course/c02-05.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/src/Code/assembly-lang-course/c02-05.asm -------------------------------------------------------------------------------- /src/Code/assembly-lang-course/c02-06.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/src/Code/assembly-lang-course/c02-06.asm -------------------------------------------------------------------------------- /src/Code/assembly-lang-course/c02-06b.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/src/Code/assembly-lang-course/c02-06b.asm -------------------------------------------------------------------------------- /src/Code/assembly-lang-course/c02-06c.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/src/Code/assembly-lang-course/c02-06c.asm -------------------------------------------------------------------------------- /src/Code/assembly-lang-course/c02-07.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/src/Code/assembly-lang-course/c02-07.asm -------------------------------------------------------------------------------- /src/Code/assembly-lang-course/c02-07b.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/src/Code/assembly-lang-course/c02-07b.asm -------------------------------------------------------------------------------- /src/Code/assembly-lang-course/c02-08.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/src/Code/assembly-lang-course/c02-08.asm -------------------------------------------------------------------------------- /src/Code/assembly-lang-course/c02-09.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/src/Code/assembly-lang-course/c02-09.asm -------------------------------------------------------------------------------- /src/Code/assembly-lang-course/c02-10.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/src/Code/assembly-lang-course/c02-10.asm -------------------------------------------------------------------------------- /src/Code/assembly-lang-course/c03-01.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/src/Code/assembly-lang-course/c03-01.asm -------------------------------------------------------------------------------- /src/Code/assembly-lang-course/c03-01b.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/src/Code/assembly-lang-course/c03-01b.asm -------------------------------------------------------------------------------- /src/Code/assembly-lang-course/c04-01.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/src/Code/assembly-lang-course/c04-01.asm -------------------------------------------------------------------------------- /src/Code/assembly-lang-course/c04-02.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/src/Code/assembly-lang-course/c04-02.asm -------------------------------------------------------------------------------- /src/Code/assembly-lang-course/c04-03.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/src/Code/assembly-lang-course/c04-03.asm -------------------------------------------------------------------------------- /src/Code/assembly-lang-course/c05-01.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/src/Code/assembly-lang-course/c05-01.asm -------------------------------------------------------------------------------- /src/Code/assembly-lang-course/c06-01.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/src/Code/assembly-lang-course/c06-01.asm -------------------------------------------------------------------------------- /src/Code/assembly-lang-course/c06-02.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/src/Code/assembly-lang-course/c06-02.asm -------------------------------------------------------------------------------- /src/Code/assembly-lang-course/c06-03.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/src/Code/assembly-lang-course/c06-03.asm -------------------------------------------------------------------------------- /src/Code/assembly-lang-course/c06-04.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/src/Code/assembly-lang-course/c06-04.asm -------------------------------------------------------------------------------- /src/Code/assembly-lang-course/c06-05.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/src/Code/assembly-lang-course/c06-05.asm -------------------------------------------------------------------------------- /src/Code/assembly-lang-course/c07-01.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/src/Code/assembly-lang-course/c07-01.asm -------------------------------------------------------------------------------- /src/Code/assembly-lang-course/c07-02.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/src/Code/assembly-lang-course/c07-02.asm -------------------------------------------------------------------------------- /src/Code/assembly-lang-course/c07-03.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/src/Code/assembly-lang-course/c07-03.asm -------------------------------------------------------------------------------- /src/Code/assembly-lang-course/c07-04.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/src/Code/assembly-lang-course/c07-04.asm -------------------------------------------------------------------------------- /src/Code/assembly-lang-course/c08-01.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/src/Code/assembly-lang-course/c08-01.asm -------------------------------------------------------------------------------- /src/Code/assembly-lang-course/c08-02.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/src/Code/assembly-lang-course/c08-02.asm -------------------------------------------------------------------------------- /src/Code/assembly-lang-course/c09-01.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/src/Code/assembly-lang-course/c09-01.asm -------------------------------------------------------------------------------- /src/Code/assembly-lang-course/c09-01.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/src/Code/assembly-lang-course/c09-01.c -------------------------------------------------------------------------------- /src/Code/assembly-lang-course/c10-01.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/src/Code/assembly-lang-course/c10-01.sh -------------------------------------------------------------------------------- /src/Code/assembly-lang-course/q1.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/src/Code/assembly-lang-course/q1.asm -------------------------------------------------------------------------------- /src/Code/assembly-lang-course/r01-01.S.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/src/Code/assembly-lang-course/r01-01.S.s -------------------------------------------------------------------------------- /src/Code/assembly-lang-course/r01-02.S.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/src/Code/assembly-lang-course/r01-02.S.s -------------------------------------------------------------------------------- /src/Code/assembly-lang-course/temp.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/src/Code/assembly-lang-course/temp.asm -------------------------------------------------------------------------------- /src/Final-Exam/19L-2313-Q1.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/src/Final-Exam/19L-2313-Q1.asm -------------------------------------------------------------------------------- /src/Final-Exam/9-8.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/src/Final-Exam/9-8.asm -------------------------------------------------------------------------------- /src/Final-Exam/CTS.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/src/Final-Exam/CTS.asm -------------------------------------------------------------------------------- /src/Final-Exam/Scroll-Left.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/src/Final-Exam/Scroll-Left.asm -------------------------------------------------------------------------------- /src/Final-Exam/Scroll-Right.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/src/Final-Exam/Scroll-Right.asm -------------------------------------------------------------------------------- /src/Final-Exam/TSR.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/src/Final-Exam/TSR.asm -------------------------------------------------------------------------------- /src/Final-Exam/Timer.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/src/Final-Exam/Timer.asm -------------------------------------------------------------------------------- /src/Final-Exam/ascii.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/src/Final-Exam/ascii.asm -------------------------------------------------------------------------------- /src/Final-Exam/carry.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/src/Final-Exam/carry.asm -------------------------------------------------------------------------------- /src/Final-Exam/code.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/src/Final-Exam/code.asm -------------------------------------------------------------------------------- /src/Final-Exam/content.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/src/Final-Exam/content.asm -------------------------------------------------------------------------------- /src/Final-Exam/mul.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/src/Final-Exam/mul.asm -------------------------------------------------------------------------------- /src/Final-Exam/snek.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/src/Final-Exam/snek.asm -------------------------------------------------------------------------------- /src/Final-Exam/temp.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/src/Final-Exam/temp.asm -------------------------------------------------------------------------------- /src/LAB-FINAL/L11q1.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/src/LAB-FINAL/L11q1.asm -------------------------------------------------------------------------------- /src/LAB-FINAL/diamond.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/src/LAB-FINAL/diamond.txt -------------------------------------------------------------------------------- /src/LAB-FINAL/l10q1.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/src/LAB-FINAL/l10q1.asm -------------------------------------------------------------------------------- /src/LAB-FINAL/l10q2.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/src/LAB-FINAL/l10q2.asm -------------------------------------------------------------------------------- /src/LAB-FINAL/l9q1.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/src/LAB-FINAL/l9q1.asm -------------------------------------------------------------------------------- /src/LAB-FINAL/l9q2.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/src/LAB-FINAL/l9q2.asm -------------------------------------------------------------------------------- /src/LAB-FINAL/l9q4.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/src/LAB-FINAL/l9q4.asm -------------------------------------------------------------------------------- /src/Lab-12/Q1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/src/Lab-12/Q1 -------------------------------------------------------------------------------- /src/Lab-12/q1.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/src/Lab-12/q1.asm -------------------------------------------------------------------------------- /src/Lab-12/q2.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/src/Lab-12/q2.asm -------------------------------------------------------------------------------- /src/Lab-12/q3.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/src/Lab-12/q3.asm -------------------------------------------------------------------------------- /src/Practice/1.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/src/Practice/1.asm -------------------------------------------------------------------------------- /src/Practice/2.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/src/Practice/2.asm -------------------------------------------------------------------------------- /src/Practice/3.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/src/Practice/3.asm -------------------------------------------------------------------------------- /src/Practice/4.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/src/Practice/4.asm -------------------------------------------------------------------------------- /src/Practice/COAL Display & Interrupt Practice/21L-7646 Lab 7.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/src/Practice/COAL Display & Interrupt Practice/21L-7646 Lab 7.pdf -------------------------------------------------------------------------------- /src/Practice/COAL Display & Interrupt Practice/21L-7646 Muhammad Ali Butt(10).docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/src/Practice/COAL Display & Interrupt Practice/21L-7646 Muhammad Ali Butt(10).docx -------------------------------------------------------------------------------- /src/Practice/COAL Display & Interrupt Practice/COAL_Lab11D.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/src/Practice/COAL Display & Interrupt Practice/COAL_Lab11D.pdf -------------------------------------------------------------------------------- /src/Practice/COAL Display & Interrupt Practice/COAL_Lab7.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/src/Practice/COAL Display & Interrupt Practice/COAL_Lab7.pdf -------------------------------------------------------------------------------- /src/Practice/COAL Display & Interrupt Practice/COAL_Lab8.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/src/Practice/COAL Display & Interrupt Practice/COAL_Lab8.pdf -------------------------------------------------------------------------------- /src/Practice/COAL Display & Interrupt Practice/COAL_Lab9.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/src/Practice/COAL Display & Interrupt Practice/COAL_Lab9.docx -------------------------------------------------------------------------------- /src/Practice/COAL Display & Interrupt Practice/COAL_Lab9.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/src/Practice/COAL Display & Interrupt Practice/COAL_Lab9.pdf -------------------------------------------------------------------------------- /src/Practice/COAL Display & Interrupt Practice/COAL_Lab_Quiz_2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/src/Practice/COAL Display & Interrupt Practice/COAL_Lab_Quiz_2.pdf -------------------------------------------------------------------------------- /src/Practice/COAL Display & Interrupt Practice/L8Q.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/src/Practice/COAL Display & Interrupt Practice/L8Q.asm -------------------------------------------------------------------------------- /src/Practice/COAL Display & Interrupt Practice/L9A1.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/src/Practice/COAL Display & Interrupt Practice/L9A1.asm -------------------------------------------------------------------------------- /src/Practice/COAL Display & Interrupt Practice/L9A4.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/src/Practice/COAL Display & Interrupt Practice/L9A4.asm -------------------------------------------------------------------------------- /src/Practice/COAL Display & Interrupt Practice/Quiz2A1.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/src/Practice/COAL Display & Interrupt Practice/Quiz2A1.asm -------------------------------------------------------------------------------- /src/Practice/COAL Display & Interrupt Practice/Quiz2A2.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/src/Practice/COAL Display & Interrupt Practice/Quiz2A2.asm -------------------------------------------------------------------------------- /src/Practice/quiz.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/src/Practice/quiz.asm -------------------------------------------------------------------------------- /src/Project/Helping codespdf.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/src/Project/Helping codespdf.pdf -------------------------------------------------------------------------------- /src/Project/KB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/src/Project/KB -------------------------------------------------------------------------------- /src/Project/MAHAD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/src/Project/MAHAD -------------------------------------------------------------------------------- /src/Project/MyKeyBoard.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/src/Project/MyKeyBoard.asm -------------------------------------------------------------------------------- /src/Project/P: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/src/Project/P -------------------------------------------------------------------------------- /src/Project/PC.OM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/src/Project/PC.OM -------------------------------------------------------------------------------- /src/Project/a.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/src/Project/a.asm -------------------------------------------------------------------------------- /src/Project/candy crush.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/src/Project/candy crush.txt -------------------------------------------------------------------------------- /src/Project/game.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/src/Project/game.asm -------------------------------------------------------------------------------- /src/Project/kbisr.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/src/Project/kbisr.asm -------------------------------------------------------------------------------- /src/Project/m.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/src/Project/m.asm -------------------------------------------------------------------------------- /src/Project/mouse_int.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/src/Project/mouse_int.asm -------------------------------------------------------------------------------- /src/Project/p.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/src/Project/p.asm -------------------------------------------------------------------------------- /src/Project/temp.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/src/Project/temp.asm -------------------------------------------------------------------------------- /src/Project/temp2.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/src/Project/temp2.asm -------------------------------------------------------------------------------- /src/Project/temp3.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/src/Project/temp3.asm -------------------------------------------------------------------------------- /src/Project/tictactoe.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/src/Project/tictactoe.asm -------------------------------------------------------------------------------- /src/Project/z.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/src/Project/z.asm -------------------------------------------------------------------------------- /src/QUIZ/circle.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/src/QUIZ/circle.asm -------------------------------------------------------------------------------- /src/QUIZ/q1.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/src/QUIZ/q1.asm -------------------------------------------------------------------------------- /src/QUIZ/q2.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/src/QUIZ/q2.asm -------------------------------------------------------------------------------- /src/Raham/complete.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/src/Raham/complete.asm -------------------------------------------------------------------------------- /src/Raham/incomplete.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/src/Raham/incomplete.asm -------------------------------------------------------------------------------- /src/Raham/q1.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/src/Raham/q1.asm -------------------------------------------------------------------------------- /src/Raham/q2.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/src/Raham/q2.asm -------------------------------------------------------------------------------- /src/Raham/q3.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/src/Raham/q3.asm -------------------------------------------------------------------------------- /src/Scan Codes.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/src/Scan Codes.pdf -------------------------------------------------------------------------------- /src/a.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/src/a.asm -------------------------------------------------------------------------------- /src/a3.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/src/a3.asm -------------------------------------------------------------------------------- /src/aa.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/src/aa.asm -------------------------------------------------------------------------------- /src/q1.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/src/q1.asm -------------------------------------------------------------------------------- /src/q2.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/src/q2.asm -------------------------------------------------------------------------------- /src/q3.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/src/q3.asm -------------------------------------------------------------------------------- /src/q4.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/src/q4.asm -------------------------------------------------------------------------------- /src/temp.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/src/temp.asm -------------------------------------------------------------------------------- /src/timer.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/src/timer.asm -------------------------------------------------------------------------------- /workspace/AFD.EXE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/workspace/AFD.EXE -------------------------------------------------------------------------------- /workspace/DOSBoxPortable/App/AppInfo/appicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/workspace/DOSBoxPortable/App/AppInfo/appicon.ico -------------------------------------------------------------------------------- /workspace/DOSBoxPortable/App/AppInfo/appicon_128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/workspace/DOSBoxPortable/App/AppInfo/appicon_128.png -------------------------------------------------------------------------------- /workspace/DOSBoxPortable/App/AppInfo/appicon_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/workspace/DOSBoxPortable/App/AppInfo/appicon_16.png -------------------------------------------------------------------------------- /workspace/DOSBoxPortable/App/AppInfo/appicon_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/workspace/DOSBoxPortable/App/AppInfo/appicon_32.png -------------------------------------------------------------------------------- /workspace/DOSBoxPortable/App/AppInfo/appinfo.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/workspace/DOSBoxPortable/App/AppInfo/appinfo.ini -------------------------------------------------------------------------------- /workspace/DOSBoxPortable/App/AppInfo/installer.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/workspace/DOSBoxPortable/App/AppInfo/installer.ini -------------------------------------------------------------------------------- /workspace/DOSBoxPortable/App/DOSBox/DOSBox 0.74 Manual.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/workspace/DOSBoxPortable/App/DOSBox/DOSBox 0.74 Manual.txt -------------------------------------------------------------------------------- /workspace/DOSBoxPortable/App/DOSBox/DOSBox 0.74 Options.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/workspace/DOSBoxPortable/App/DOSBox/DOSBox 0.74 Options.bat -------------------------------------------------------------------------------- /workspace/DOSBoxPortable/App/DOSBox/DOSBox.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/workspace/DOSBoxPortable/App/DOSBox/DOSBox.exe -------------------------------------------------------------------------------- /workspace/DOSBoxPortable/App/DOSBox/Documentation/AUTHORS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/workspace/DOSBoxPortable/App/DOSBox/Documentation/AUTHORS.txt -------------------------------------------------------------------------------- /workspace/DOSBoxPortable/App/DOSBox/Documentation/COPYING.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/workspace/DOSBoxPortable/App/DOSBox/Documentation/COPYING.txt -------------------------------------------------------------------------------- /workspace/DOSBoxPortable/App/DOSBox/Documentation/INSTALL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/workspace/DOSBoxPortable/App/DOSBox/Documentation/INSTALL.txt -------------------------------------------------------------------------------- /workspace/DOSBoxPortable/App/DOSBox/Documentation/NEWS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/workspace/DOSBoxPortable/App/DOSBox/Documentation/NEWS.txt -------------------------------------------------------------------------------- /workspace/DOSBoxPortable/App/DOSBox/Documentation/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/workspace/DOSBoxPortable/App/DOSBox/Documentation/README.txt -------------------------------------------------------------------------------- /workspace/DOSBoxPortable/App/DOSBox/Documentation/THANKS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/workspace/DOSBoxPortable/App/DOSBox/Documentation/THANKS.txt -------------------------------------------------------------------------------- /workspace/DOSBoxPortable/App/DOSBox/Reset KeyMapper.bat: -------------------------------------------------------------------------------- 1 | DOSBox.exe -resetmapper -------------------------------------------------------------------------------- /workspace/DOSBoxPortable/App/DOSBox/Reset Options.bat: -------------------------------------------------------------------------------- 1 | DOSBox.exe -resetconf -------------------------------------------------------------------------------- /workspace/DOSBoxPortable/App/DOSBox/SDL.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/workspace/DOSBoxPortable/App/DOSBox/SDL.dll -------------------------------------------------------------------------------- /workspace/DOSBoxPortable/App/DOSBox/SDL_net.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/workspace/DOSBoxPortable/App/DOSBox/SDL_net.dll -------------------------------------------------------------------------------- /workspace/DOSBoxPortable/App/DOSBox/Screenshots _ Recordings.bat: -------------------------------------------------------------------------------- 1 | DOSBox.exe -opencaptures explorer.exe -------------------------------------------------------------------------------- /workspace/DOSBoxPortable/App/DOSBox/Video Codec/Video Instructions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/workspace/DOSBoxPortable/App/DOSBox/Video Codec/Video Instructions.txt -------------------------------------------------------------------------------- /workspace/DOSBoxPortable/App/DOSBox/Video Codec/zmbv.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/workspace/DOSBoxPortable/App/DOSBox/Video Codec/zmbv.dll -------------------------------------------------------------------------------- /workspace/DOSBoxPortable/App/DOSBox/Video Codec/zmbv.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/workspace/DOSBoxPortable/App/DOSBox/Video Codec/zmbv.inf -------------------------------------------------------------------------------- /workspace/DOSBoxPortable/App/DefaultData/settings/dosbox.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/workspace/DOSBoxPortable/App/DefaultData/settings/dosbox.conf -------------------------------------------------------------------------------- /workspace/DOSBoxPortable/DOSBoxPortable.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/workspace/DOSBoxPortable/DOSBoxPortable.exe -------------------------------------------------------------------------------- /workspace/DOSBoxPortable/Data/settings/dosbox.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/workspace/DOSBoxPortable/Data/settings/dosbox.conf -------------------------------------------------------------------------------- /workspace/DOSBoxPortable/Data/settings/dosbox.conf.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/workspace/DOSBoxPortable/Data/settings/dosbox.conf.bak -------------------------------------------------------------------------------- /workspace/DOSBoxPortable/Other/Help/images/donation_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/workspace/DOSBoxPortable/Other/Help/images/donation_button.png -------------------------------------------------------------------------------- /workspace/DOSBoxPortable/Other/Help/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/workspace/DOSBoxPortable/Other/Help/images/favicon.ico -------------------------------------------------------------------------------- /workspace/DOSBoxPortable/Other/Help/images/help_background_footer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/workspace/DOSBoxPortable/Other/Help/images/help_background_footer.png -------------------------------------------------------------------------------- /workspace/DOSBoxPortable/Other/Help/images/help_background_header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/workspace/DOSBoxPortable/Other/Help/images/help_background_header.png -------------------------------------------------------------------------------- /workspace/DOSBoxPortable/Other/Help/images/help_logo_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/workspace/DOSBoxPortable/Other/Help/images/help_logo_top.png -------------------------------------------------------------------------------- /workspace/DOSBoxPortable/Other/Source/AppSource.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/workspace/DOSBoxPortable/Other/Source/AppSource.txt -------------------------------------------------------------------------------- /workspace/DOSBoxPortable/Other/Source/CheckForPlatformSplashDisable.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/workspace/DOSBoxPortable/Other/Source/CheckForPlatformSplashDisable.nsh -------------------------------------------------------------------------------- /workspace/DOSBoxPortable/Other/Source/DOSBoxPortable.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/workspace/DOSBoxPortable/Other/Source/DOSBoxPortable.ini -------------------------------------------------------------------------------- /workspace/DOSBoxPortable/Other/Source/DOSBoxPortable.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/workspace/DOSBoxPortable/Other/Source/DOSBoxPortable.jpg -------------------------------------------------------------------------------- /workspace/DOSBoxPortable/Other/Source/DOSBoxPortable.nsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/workspace/DOSBoxPortable/Other/Source/DOSBoxPortable.nsi -------------------------------------------------------------------------------- /workspace/DOSBoxPortable/Other/Source/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/workspace/DOSBoxPortable/Other/Source/License.txt -------------------------------------------------------------------------------- /workspace/DOSBoxPortable/Other/Source/ReadINIStrWithDefault.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/workspace/DOSBoxPortable/Other/Source/ReadINIStrWithDefault.nsh -------------------------------------------------------------------------------- /workspace/DOSBoxPortable/Other/Source/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/workspace/DOSBoxPortable/Other/Source/Readme.txt -------------------------------------------------------------------------------- /workspace/DOSBoxPortable/help.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/workspace/DOSBoxPortable/help.html -------------------------------------------------------------------------------- /workspace/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/workspace/README.md -------------------------------------------------------------------------------- /workspace/hello.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/workspace/hello.asm -------------------------------------------------------------------------------- /workspace/nasm.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahadMuhammad/Learn-Assembly-The-Hard-Way/HEAD/workspace/nasm.exe --------------------------------------------------------------------------------