Skip to content

Fathin-Ishrak-Romeo/BRACU_CSE341-Microprocessor_LAB

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Project

Digital food ordering system at a restaurant using x86-Assembly Language (User Interface)

Features

  1. The user is greeted with a welcome message.
  2. All the food categories (breakfast, lunch, dinner, snacks, dinners) are shown to the user.
  3. The user can select any category or exit the program.
  4. All the foods available under the selected category are displayed to the user.
  5. The user selects any food item.
  6. The user inputs the quantity of the selected food item. The quantity can not be more than 9.
  7. The total price is stored and displayed to the user.
  8. From step 7, the user can go back to the food categories menu or the previous menu, order again, and have the price added to the total price, which is displayed to the user. Alternatively, the user can choose to view the bill.
  9. After the final bill is displayed to the user, they can go back to the main category menu to order again or exit the program.
  10. The system handles all types of invalid inputs from the user.

LAB 01 (Arithmetic Operations in Assembly Language)

  1. Use of General Purpose Registers (AX, BX, CX, DX)
  2. Use of MOV, ADD, SUB, MUL, DIV, NEG, DEC, INC operations

Tutorial: EMU8086 Assembly Language | Arithmetic Operations by Hamim Nasim

LAB 02 (I/O in Assembly Language)

  1. Single character input from the user
  2. Single character output
  3. String (Multicharacter) output
  4. Newline instruction
  5. Carriage return instruction
  6. Flags

Tutorial: Basic I/O in EMU8086 by Hamim Nasim

LAB 03 (Flow Control & Branching in Assembly Language)

  1. CMP operation
  2. JMP operations (JE, JG, JL, JGE, JLE)
  3. Conditional jump
  4. Issue with conditional jump
  5. Unconditional jump (A solution to conditional jump problem)
  6. Handling else-if condition

Tutorial: Branching Structures in EMU8086 by Hamim Nasim

LAB MID PRACTICE

Topic: Lab 01, Lab 02, Lab 03
Lecture Video: LAB MID Review Class by Hamim Nasim

LAB 04 (Flow control instructions and Looping structures in Assembly Language)

  1. Explicit loop structure
  2. Implicit loop structure

Tutorial: Loop Structure in EMU8086

LAB 05 (Array in Assembly Language)

Tutorial: ARRAY in Assembly Language | EMU8086 by Hamim Nasim

LAB 06 (Stack In Assembly Language)

Tutorial: STACK in Assembly Language | Emu8086 by Hamim Nasim

LAB 07 (Macros and Procedures in Assembly Language)

Tutorial: Macros and Procedure | EMU8086 | Assembly Language by Hamim Nasim

LAB 08 (Arrays and Addressing Modes in Assembly Language)

LAB 09 (Introduction to EMU8086 Kit)

LAB 10 (Configuring EMU/MDA8086 Trainer Kit)