Chapter 7 Low-Level Programming Languages Nell Dale John Lewis.

Slides:



Advertisements
Similar presentations
Chapter 2: Data Manipulation
Advertisements

Low-Level Programming Languages and Pseudocode
The 8051 Microcontroller and Embedded Systems
 Suppose for a moment that you were asked to perform a task and were given the following list of instructions to perform:
Low-Level Programming Languages and Pseudocode Chapter 6.
Low-Level Programming Languages and Pseudocode Chapter 6.
Chapter 1: An Overview of Computers and Programming Languages J ava P rogramming: From Problem Analysis to Program Design, From Problem Analysis to Program.
Copyright © 2008 Pearson Education, Inc. Publishing as Pearson Addison-Wesley Starting Out with Programming Logic & Design First Edition by Tony Gaddis.
TK 2633 Microprocessor & Interfacing Lecture 3: Introduction to 8085 Assembly Language Programming (2) 1 Prepared By: Associate Prof. Dr Masri Ayob.
Low-Level Programming Languages
Copyright © 2006 Addison-Wesley. All rights reserved.1-1 ICS 410: Programming Languages Chapter 3 : Describing Syntax and Semantics Operational Semantics.
Room: E-3-31 Phone: Dr Masri Ayob TK 2633 Microprocessor & Interfacing Lecture 1: Introduction to 8085 Assembly Language.
Chapter 7 Low-Level Programming Languages. 2 Chapter Goals List the operations that a computer can perform Discuss the relationship between levels of.
Chapter 2: Impact of Machine Architectures What is the Relationship Between Programs, Programming Languages, and Computers.
Outline Chapter 1 Hardware, Software, Programming, Web surfing, … Chapter Goals –Describe the layers of a computer system –Describe the concept.
EET 2261 Unit 2 HCS12 Architecture
Computer Architecture
ECE 265 – LECTURE 9 PROGRAM DESIGN 8/12/ ECE265.
Assembly & Machine Languages
Chapter 1 An Overview of Computers and Programming Languages.
Low-Level Programming Languages and Pseudocode
An Introduction Chapter Chapter 1 Introduction2 Computer Systems  Programmable machines  Hardware + Software (program) HardwareProgram.
Topics Introduction Hardware and Software How Computers Store Data
CPS120: Introduction to Computer Science
4-1 Chapter 4 - The Instruction Set Architecture Computer Architecture and Organization by M. Murdocca and V. Heuring © 2007 M. Murdocca and V. Heuring.
CISC105 General Computer Science Class 1 – 6/5/2006.
Copyright © 2012 Pearson Education, Inc. Publishing as Pearson Addison-Wesley C H A P T E R 1 Introduction to Computers and Programming.
Microcode Source: Digital Computer Electronics (Malvino and Brown)
Assemblers.
Chapter 4 MARIE: An Introduction to a Simple Computer.
C++ Programming: From Problem Analysis to Program Design, Third Edition Chapter 1: An Overview of Computers and Programming Languages.
Assembly Language A Brief Introduction. Unit Learning Goals CPU architecture. Basic Assembler Commands High level Programming  Assembler  Machine Language.
Module : Algorithmic state machines. Machine language Machine language is built up from discrete statements or instructions. On the processing architecture,
Computer Operations A computer is a programmable electronic device that can store, retrieve, and process data Data and instructions to manipulate the data.
1 Text Reference: Warford. 2 Computer Architecture: The design of those aspects of a computer which are visible to the programmer. Architecture Organization.
Chapter 7 Low-Level Programming Languages. 2 Chapter Goals List the operations that a computer can perform Discuss the relationship between levels of.
Chapter 7 Low-Level Programming Languages. 2 Chapter Goals List the operations that a computer can perform Discuss the relationship between levels of.
Chapter 7 Low-Level Programming Languages (slides modified by Erin Chambers)
Chapter 7 Low-Level Programming Languages Nell Dale John Lewis.
Represents different voltage levels High: 5 Volts Low: 0 Volts At this raw level a digital computer is instructed to carry out instructions.
Chapter 7 Low-Level Programming Languages Nell Dale John Lewis.
Dale & Lewis Chapter 5 Computing components
Computer Organization Instructions Language of The Computer (MIPS) 2.
Chapter 2 Data Manipulation © 2007 Pearson Addison-Wesley. All rights reserved.
Chapter 1 An Overview of Computers and Programming Languages.
Hello world !!! ASCII representation of hello.c.
Operating Systems A Biswas, Dept. of Information Technology.
CPS4200 System Programming Spring 1 Systems Programming Chapter 1 Background I.
Chapter 7: Low-Level Programming Languages Chapter 7 Low-Level Programming Languages Page 66 In order to execute instructions on a CPU, those instructions.
Low-Level Programming Languages, Pseudocode and Testing Chapter 6.
Introduction to computer software. Programming the computer Program, is a sequence of instructions, written to perform a specified task on a computer.
Topics Introduction Hardware and Software How Computers Store Data
COMPUTER ORGANIZATION & ASSEMBLY LANGUAGE
Microprocessor Systems Design I
Microprocessor Systems Design I
The 8051 Microcontroller and Embedded Systems
Chapter 3 Machine Language and Assembly Language.
Chapter 3 Machine Language and Assembly Language.
Chapter 1: An Overview of Computers and Programming Languages
Introduction to Assembly Language
Mobile Development Workshop
Chapter One: Introduction
Topics Introduction Hardware and Software How Computers Store Data
Low Level Programming Languages
MARIE: An Introduction to a Simple Computer
MARIE: An Introduction to a Simple Computer
CPU has 6 special locations called registers
Introduction to Computer Systems
Chapter 4: Computer Architecture
Dr. Clincy Professor of CS
Presentation transcript:

Chapter 7 Low-Level Programming Languages Nell Dale John Lewis

7-2 Chapter Goals List the operations that a computer can perform Discuss the relationship between levels of abstraction and the determination of concrete algorithm steps Describe the important features of the Pep/7 virtual machine Distinguish between immediate mode addressing and direct addressing Convert a simple algorithm into a machine-language program

7-3 Chapter Goals (cont.) Distinguish between machine language and assembly language Describe the steps in creating and running an assembly- language program Convert a simple algorithm into an assembly-language program Distinguish between instructions to the assembler and instructions to be translated Describe two approaches to testing Design and implement a test plan for a simple assembly- language program

7-4 Computer Operations A computer is a programmable electronic device that can store, retrieve, and process data Data and instructions to manipulate the data are logically the same and can be stored in the same place Store, retrieve, and process are actions that the computer can perform on data

7-5 Machine Language Machine language: the instructions built into the hardware of a particular computer Initially, humans had no choice but to write programs in machine language because other programming languages had not yet been invented

7-6 Machine Language Every processor type has its own set of specific machine instructions The relationship between the processor and the instructions it can carry out is completely integrated Each machine-language instruction does only one very low-level task

7-7 Pep/7: A Virtual Computer A virtual computer is a hypothetical machine designed to contain the important features of real computers that we want to illustrated Pep/7 –designed by Stanley Warford –has 32 machine-language instructions We are only going to examine a few of these instructions

7-8 Features in Pep/7 The memory unit is made up of 4,096 bytes of storage Pep/7 has seven registers, four of which we focus on at this point –The program counter (PC) (contains the address of the next instruction to be executed) –The instruction register (IR) (contains a copy of the instruction being executed) –The index register (X register) –The accumulator (A register)

7-9 Features in Pep/7 Figure 7.1 Pep/7’s architecture

7-10 Instruction Format There are two parts to an instruction –The 8-bit instruction specifier –And optionally, the 16-bit operand specifier Figure 7.2 The Pep/7 instruction format

7-11 Instruction Format The instruction specifier is made up of several sections –The operation code –The register specifier –The addressing-mode specifier

7-12 Instruction Format The operation code specifies which instruction is to be carried out The 1-bit register specifier is 0 if register A (the accumulator) is involved in the operation and 1 if register X (the index register) is involved The 2-bit addressing-mode specifier says how to interpret the operand part of the instruction

7-13 Instruction Format

7-14 Some Sample Instructions

7-15 A Program Example Let’s write "Hello" on the screen Page 200

7-16 Pep/7 Simulator A program that behaves just like the Pep/7 virtual machine behaves To run a program, we enter the hexadecimal code, byte by byte with blanks between each

7-17 Assembly Language Assembly languages: assign mnemonic letter codes to each machine-language instruction –The programmer uses these letter codes in place of binary digits –A program called an assembler reads each of the instructions in mnemonic form and translates it into the machine-language equivalent

7-18 Pep/7 Assembly Language

7-19 Figure 7.5 Assembly Process

7-20 A New Program

Our Completed Program

7-22 Testing Test plan: a document that specifies how many times and with what data the program must be run in order to thoroughly test the program A code-coverage approach designs test cases to ensure that each statement in the program is executed Data-coverage testing is another approach; it designs test cases to ensure that the limits of the allowable data are covered

7-23 Ethical Issues: Software Piracy, Copyrighting Research indicated that, globally, 11.5 billion dollars were lost in the year 2000 to pirated software Advocates of open-source code believe that a program’s original source code should be in the public domain Respecting the copyrights of software, if it is not open code, is important from a number of perspectives