Assembly Language Theory Important Solved Questions Punjab University

Table of Contents

What difference between Machine, assembly, and high-level language?

Machine LanguageAssembly LanguageHigh-level Language
It is the native language of
machine
It is a low-level computer
programming language which
means it is closer to
machine
It is a computer programming
the language that is more close to
human.
Consists of 0’s and 1’sConsists of a symbolic
representation (i.e.
Mnemonics)
Consists of English like
statements
Known as machine codeKnown as assembly code and
also asm
There are many high level
level languages e.g. c, java
and they are called by their
names.

Difference between Assembler, Compiler, and Interpreter?

AssemblerCompilerInterpreter
Translate assembly code to
machine code
Translate the entire high level
language code to machine
code
Translate the high-level code
line by line (single instruction
at a time) and then convert to
machine code

What are Buses and their types? Also, draw the diagram?

Buses are the wires that connect the components. (CPU, memory, and input/output
devices).

There are three types of wires:
Address Bus: holds the address of memory location, and address signals.
Control Bus: Inform the memory to perform read operations, and control signals.
Data Bus: Holds the actual data, and data signals.

Address Busses

Difference between the Execution unit and bus interface unit? Draw diagram

The execution unit (EU) executes the instructions, it contains a circuit called the Arithmetic
and logic unit (ALU) and registers. While the Bus Interface Unit (BIU) facilitates communication
between the EU and the memory or I/0 circuits.

Assembly language Registers, Internal Bus and Temporary Busses

How CPU executes the instruction? What is fetch-execute-cycle?

CPU executes the instruction with fetch-execute-cycle as

Fetch:

  1. Fetch instructions from memory.
  2. Decode the instruction to determine the operation.
  3. Fetch data from memory if necessary.

Execute

  1. Perform the operation on the data.
  2. Store the result in memory if needed.

Suppose a processor uses 20 bits for an address. How many memory bytes can be
accessed?

A bit can have two possible values, so In a 20-bit address, there can be 220 = 1,048,576 different values, with each value being the potential address of a memory byte. In
computer terminology, the number 220 is called 1 mega. Thus, a 20-bit address can be used to
address 1 megabyte or 1 MB.

Difference between opcode and mnemonic?

Mnemonic is a symbolic representation e.g. AX, BX, ADD, MOV, DB, DW, etc. While
the opcode is a mnemonic that performs the operation e.g. MOV, ADD, SUB, PUSH, etc

What difference between a memory location and register?

Memory locations are locations of external main memory (RAM). While the register is the fastest
location inside the microprocessor (ax, bx, cx, dx, ss, cs, si, di, etc)

Calculate the physical address of A4FB:4872

Step 1:

Multiply A4FB with 10h which is equal to A4FBO

Step 2:

Add

  • A4FBOh
  • 4872h
  • A9822h (20-bit physical address)

What are Registers, describe all registers?

Registers are the fastest memory locations built into microprocessors.
Following are the 14 types of registers

Accoumulator BAse Counter Data

What is a flag register? Describe all bits?

A flag register is a register that contains the current state of the processor. The flag register consists
of status flags and control flags.

of df if tf sf zf af pf cf

Status Flags: To handle the result of an operation.

  1. Carry: CF (1 if carried out)
  2. Parity: PF (1 if the number of 1 bit is even)
  3. Auxiliary: AF (1 if there is 3rd-bit carry)
  4. Zero: ZF (1 if the result is 0)
  5. Sign: Flag (1 if the result is negative)
  6. Overflow flag (1 if result if out of range of destination location)

Controls Flags: To Control the operations of the CPU

  1. Trap: TF (1 if debugging is used)
  2. Direction: DF (1 if the reverse function is called)
  3. Interrupt: IF (1 if the interruption is called)

What are Assembler directives?

Assembly directives are instructions that direct the assembler to do something. They are not converted to machine code. There are different directives in assembly language, some of them are;

  • model
  • stack
  • data
  • code
  • Db, dw, dt

Describe Data representation in Assembly language programming?

In assembly, data can be represented in the following ways

11011Decimal
11011BBINARY
64223DECIMAL
21843DDECIMAL
OFFFFHHexadecimal number

Draw the Basic Program structure?

;Title of the program
Dosseg 
.model small
.stack 100h
.data
; variables are defined here
.code
Main proc ; procedure start
; executable instructions
Main endp ; procedure end
End main

Realted : Network Security Punjab University Solved Past Paper 2020

Describe five logic instructions?

The five logic instructions are AND, OR, NOT, XOR, and TEST.

  • The AND Instruction can be used to clear individual bits in the destination.
  • The OR instruction Is useful In setting individual bits in the destination. It can also be used to test the destination for zero.
  • The XOR instruction can be used to complement individual bits in the destination. It can also be used to zero out the destination.
  • The NOT Instruction performs the one’s complement operation on the destination.
  • The TEST Instruction can be used to examine individual bits of the destination. For example, It can determine If the destination contains an even or odd number

Perform the following operations

perform the following operations 10101010 and 11110000

Write some code to multiply the value of AX by 8. Assume that overflow will not occur.

Mov Sal

If CS = 7646H and IP =12BAH, show

  1. The Logical Address
  2. The offset Address
  3. Physical Address

Solution:

Segment Address = CS = 7646H
Offset Address = IP = 12BAH
Logical Address= Segment: Offset 
= 7646H : 12BAH
Physical Address: 
First Multiply 7646H with 10h = 76460H
Now add 76460H and 12BAH = 7771Ah
So, physical address is 7771Ah

Define the following terms:

  1. SAL and SHL
  2. SHR
  3. SAR
  4. ROL
  5. RCL and RCR

SAL AND SHL

SAL and SHL shift each destination bit “left one place. The most significant bit goes into CF,
and a 0 Is shifted Into the least significant bit.

SHR
SHR shifts each destination bit right in one place. The least significant bit goes into CF, and a 0
ls shifted into the most significant bit.

SAR
SAR operates like SHR, except that the value of the most significant bit is preserved.

ROL
ROL shifts each destination bit left one position; the most significant bit is rotated Into the least significant bit.

RCL and RCR
RCL and RCR operate like ROL and ROR, except that a bit rotated out goes Into CF, and the value of CF rotates into the destination.

What is STACK? What are stack instructions?

Stack
The stack is a temporary storage area that works on LIFO (last-in, first-out data) principle.

Stack instructions
The stack-altering instructions are PUSH, PUSHF, POP, and POPF.
PUSH: adds a new top word to the stack
POP: removes the top word.
PUSHF: saves the FLAGS register on the stack
POPF: puts the stack top into the FLAGS register.
SP decreases by 2 when PUSH or PUSHF is executed, and It increases by 2 when POP or
POPF is executed

Related: No Parameterless Constructor Defined for this Object

Leave a Comment