Chapter Six. Exercises Clear the screen Write a procedure to show a symbol at (dl, dh). AL stores the symbol. Write a procedure to control a character.

Slides:



Advertisements
Similar presentations
1 Human Computer Interaction Week 3 User Interface Design.
Advertisements

DOS and BIOS Interrupts DOS and BIOS interrupts are used to perform some very useful functions, such as displaying data to the monitor, reading data from.
The TI-83 Plus Elementary Algebra Calculator Tutorial.
AxiUm. The student should have the following screen opened in Axium. It is the ELECTRONIC DENTAL CHART. All items in BLUE are unapproved items. All items.
Chapter 7. Copyright 2003, Paradigm Publishing Inc. CHAPTER 7 BACKNEXTEND 7-2 LINKS TO OBJECTIVES Set tabs on Ruler Set tabs at Tabs Dialog Box Set tabs.
Important Irvine Library Procedures Randomize Randomize –Initializes the seed of the random-number formula by both the Random32 and the RandomRange procedures.
Exercise Exercise3.1 8 Exercise3.1 9 Exercise
Chapter 7 Programming with DOS and BIOS Function Calls Objectives: The use of DOS and BIOS function call How to read the PC’s keyboard How to send text.
Exercise Exercise Exercise Exercise
Exercise Exercise Exercise Exercise
Exercise Exercise6.1 7 Exercise6.1 8 Exercise6.1 9.
Kip Irvine: Assembly Language for Intel-Based Computers
The case of the Missing Sock
Chapter 1- Visual Basic Schneider 1 Chapter 1 An Introduction to Computers and Visual Basic.
Chapter 6 Color Image Processing Chapter 6 Color Image Processing.
CHARACTERS Data Representation. Using binary to represent characters Computers can only process binary numbers (1’s and 0’s) so a system was developed.
GRAPHIC CALCULATOR (GRAFISCHE REKENMACHINE). Graphic Calculator.
Assembly Programming Timothy C. Rice Jr., MIT. OUTLINE Basic Structure Exit to Dos Print Character Clear Screen Change BG & FG Color Set Curser Location.
1 Advanced Features of Keyboard Processing Suthida Chaichomchuen
Chapter 2 Data Representation. Define data types. Visualize how data are stored inside a computer. Understand the differences between text, numbers, images,
Copyright 2007, Paradigm Publishing Inc. Word 2007 Chapter 3 BACKNEXTEND 3-1 LINKS TO OBJECTIVES Numbering and BulletsNumbering and Bullets Borders and.
ICS312 Set 4 Program Structure. Outline for a SMALL Model Program Note the quiz at the next lecture will be to reproduce this slide.MODEL SMALL.586 ;
BIOS1 Basic Input Output System BIOS BIOS refers to a set of procedures or functions that enable the programmer have access to the hardware of the computer.
ORG ; FOUR INT 21H and INT 10H Programming and Macros Dec Hex Bin
WDV 331 Dreamweaver Applications Find and Replace Dreamweaver CS6 Chapter 20.
Introducing Scratch the Cat
1 Screen and Keyboard Operations Suthida Chaichomchuen
EE4OI4 Engineering Design UP1core Library Functions.
® Microsoft Office 2010 Excel Tutorial 1: Getting Started with Excel.
Text-Mode Programming Question #1 What are the three levels of access to the video display when writing characters on the screen in text mode?
L.O. To understand programming code, to navigate and add objects into Kodu. Start Menu  Primary Applications  ICT  Kodu.
Peter Norton, 6 th edition By: Rena Essa. Lesson 3A:Using the Keyboard and Mouse.
Representing Characters in a computer Pressing a key on the computer a code is generated that the computer can convert into a symbol for displaying or.
Video systems. Lesson plan Review the code for the previous exercise Video systems Review for midterm exam.
Algorithms Writing instructions in the order they should execute.
Introduction to Business Analytics & Business Intelligence Information Systems Functions i-Clicker Demo IS vs IT IPO Model Note Taking.
Software. Computers can be used to control all sorts of devices: The device follows a sequence of instructions created by the software.
BG 1 Card Terminal Procedures. To Login:  Follow these steps to login.  Press A.
10H Interrupt. Option 0H – Sets video mode. Registers used: – AH = 0H – AL = Video Mode. 3H - CGA Color text of 80X25 7H - Monochrome text of 80X25 Ex:
In this activity, we are going to type a simple Chinese sentence with Microsoft Word by Tsang-jei Input Method and Simplified Tsang-jei Input Method. 1Start.
Zack Russ.   A simple platform game using pygame.  Player collects jewels and progresses through the levels. A Platformer.
Saving TI-83 List Data to a Program File. Saving TI-83 Lists to a Program Step 1: Create a New Program Press PRGM and arrow over to NEW Press ENTER and.
Assembly Language Makeup Miterm Lecturer: Sai-Keung Wong National Chiao Tung University Rename the template folder name to: YourStudentID_YourName. If.
Midterm: Question 1 (35%) (30 minutes) Write an assembly program to draw a rectangle. – (5%) Show a message to ask for information of the rectangle – (5%)
Programming a Shooter Game Design.
Chapter 13.  Place additional orders using order codes.
LINEAR PROGRAMMING. First Graph the constraints.
SS Page 1 Chapter 1  A Historian likes to study the past and artifacts from long ago.  A geographer likes to study where places are and Earths surface.
Keyboard Finger Placement Exercise
THE CODING SYSTEM FOR REPRESENTING DATA IN COMPUTER.
1 Displaying Dialog Boxes Kashef Mughal. 2 Midterm Stats Here we go  Average was  Low was 116  High was 184  Mid Quarter Grade - check any.
Program Structure Example for Data Segment CRLF EQU 0DH, 0AH PROMPT DB 'Enter a digit between 0 and 9', 0 VAR1 DB ? ARRAY DW 1234h, 23h, 0FF54h.
Processing the image with Python
LCD and Keyboard Interfacing
Data Encoding Characters.
Data Representation ASCII.
What is the Procedure to Reset Lexmark Laser Printer.
LCD and Keyboard Interfacing
LCD and Keyboard Interfacing
Bitwise Operators CS163 Fall 2018.
LCD and Keyboard Interfacing
Chapter 2 Data Representation.
Press Ad Screen-shot.
Color Image Processing
STORE MANAGER RESPONSIBILITIES.
Chapter5: Synchronous Sequential Logic – Part 4
Chapter 6.
Industrial Robotics.
ASCII and Unicode.
Presentation transcript:

Chapter Six

Exercises Clear the screen Write a procedure to show a symbol at (dl, dh). AL stores the symbol. Write a procedure to control a character to move based on the control code stored in AL. – If AL = 0, move to left – If AL = 1, move to right Write a procedure to clear the character at its current position before moving to the new position.

Write a procedure to control the character to move based on a sequence of control code. When the robot moves: – move to the left, use symbol ‘C’ with blue color. – move to the right, use symbol ‘D’ with blue color. Press: key “a” to move the robot to left key “b” to move the robot to right