Lecture Computer organization and assembly language - Lecture 10: Data Transfer, Add & SUB (Flags) - TRƯỜNG CÁN BỘ QUẢN LÝ GIÁO DỤC THÀNH PHỐ HỒ CHÍ MINH

7 11 0
Lecture Computer organization and assembly language - Lecture 10: Data Transfer, Add & SUB (Flags) - TRƯỜNG CÁN BỘ QUẢN LÝ GIÁO DỤC THÀNH PHỐ HỒ CHÍ MINH

Đang tải... (xem toàn văn)

Thông tin tài liệu

You may modify and copy this slide show for your personal use, or for use in the classroom, as long as this copyright statement, the author's name, and the title are not changed..[r]

(1)

CSC 221

Computer Organization and Assembly Language

Lecture 10:

(2)

• Data Transfer Instructions

– Operand Types

– Instruction Operand Notation – Direct Memory Operands

– MOV Instruction

– Zero & Sign Extension – XCHG Instruction

(3)

Direct Memory Operands

.data

var1 BYTE 10h .code

mov al,var1 ; AL = 10h

mov al,[var1] ; AL = 10h

MOVE Instruction

.data

count BYTE 100 wVal WORD 2 .code

mov bl,count mov ax,wVal mov count,al

mov al,wVal ; error

mov ax,count ; error

(4)

.data

bVal BYTE 100 bVal2 BYTE ? wVal WORD 2 dVal DWORD 5 .code mov ds,45 mov esi,wVal mov eip,dVal mov 25,bVal mov bVal2,bVal

immediate move to DS not permitted size mismatch

EIP cannot be the destination

(5)

Zero Extension

mov bl,10001111b

movzx ax,bl ; zero-extension

Sign Extension

mov bl,10001111b

(6)

• We have analyzed

– Memory operands in Assembly

• ADD SUB Instruction • NEG Instruction

(7)

Most of the Slides are taken from Presentation:

Chapter 4

Assembly Language for Intel-Based Computers, 4th Edition

Kip R Irvine

Ngày đăng: 01/04/2021, 18:32

Tài liệu cùng người dùng

  • Đang cập nhật ...

Tài liệu liên quan