Digital food ordering system at a restaurant using x86-Assembly Language (User Interface)
- The user is greeted with a welcome message.
- All the food categories (breakfast, lunch, dinner, snacks, dinners) are shown to the user.
- The user can select any category or exit the program.
- All the foods available under the selected category are displayed to the user.
- The user selects any food item.
- The user inputs the quantity of the selected food item. The quantity can not be more than 9.
- The total price is stored and displayed to the user.
- 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.
- 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.
- The system handles all types of invalid inputs from the user.
- Use of General Purpose Registers (AX, BX, CX, DX)
- Use of MOV, ADD, SUB, MUL, DIV, NEG, DEC, INC operations
Tutorial: EMU8086 Assembly Language | Arithmetic Operations by Hamim Nasim
- Single character input from the user
- Single character output
- String (Multicharacter) output
- Newline instruction
- Carriage return instruction
- Flags
Tutorial: Basic I/O in EMU8086 by Hamim Nasim
- CMP operation
- JMP operations (JE, JG, JL, JGE, JLE)
- Conditional jump
- Issue with conditional jump
- Unconditional jump (A solution to conditional jump problem)
- Handling else-if condition
Tutorial: Branching Structures in EMU8086 by Hamim Nasim
Topic: Lab 01, Lab 02, Lab 03
Lecture Video: LAB MID Review Class by Hamim Nasim
- Explicit loop structure
- Implicit loop structure
Tutorial: Loop Structure in EMU8086
Tutorial: ARRAY in Assembly Language | EMU8086 by Hamim Nasim
Tutorial: STACK in Assembly Language | Emu8086 by Hamim Nasim
Tutorial: Macros and Procedure | EMU8086 | Assembly Language by Hamim Nasim