chowdhuryjoyportfolio.files.wordpress.com€¦  · Web viewMicroprocessor is an integrated circuit...

8
Answer NO.1 a) A type of computer processors that incorporates the functions of a computer's center processing unit (CPU) onto a single integrated circuit is called a microprocessor. OR………. Microprocessor is an integrated circuit that contains all the functions of a central processing unit of a computer. Main tasks a) Controlling all other parts of the machine and sending timing signals; b) Transfers data between memory and I/O devices; c) Fetches data and instructions from memory; d) Decodes instruction; e) Performs arithmetical and logical operations; f) Executes programs stored in memory; g) Performing communication among the I/O devices etc… b)

Transcript of chowdhuryjoyportfolio.files.wordpress.com€¦  · Web viewMicroprocessor is an integrated circuit...

Page 1: chowdhuryjoyportfolio.files.wordpress.com€¦  · Web viewMicroprocessor is an integrated circuit that contains all the functions of a central processing unit of a computer. Main

Answer NO.1a)

A type of computer processors that incorporates the functions of a computer's center processing unit (CPU) onto a single integrated circuit is called a microprocessor.

OR……….

Microprocessor is an integrated circuit that contains all the functions of a central processing unit of a computer.

Main tasksa) Controlling all other parts of the machine and sending timing signals;b) Transfers data between memory and I/O devices;c) Fetches data and instructions from memory;d) Decodes instruction;e) Performs arithmetical and logical operations;f) Executes programs stored in memory;g) Performing communication among the I/O devices etc…

b)

IMPORTANT LINK: https://www.byclb.com/TR/Tutorials/microprocessors/ch2_1.htm

Page 2: chowdhuryjoyportfolio.files.wordpress.com€¦  · Web viewMicroprocessor is an integrated circuit that contains all the functions of a central processing unit of a computer. Main

c.

d.

Page 3: chowdhuryjoyportfolio.files.wordpress.com€¦  · Web viewMicroprocessor is an integrated circuit that contains all the functions of a central processing unit of a computer. Main

Answer NO.2

a)The segment address, located within one of the segment registers, defines the beginning address of any 64K-byte memory segment.The offset address selects any location within the 64K byte memory segment.

Page 4: chowdhuryjoyportfolio.files.wordpress.com€¦  · Web viewMicroprocessor is an integrated circuit that contains all the functions of a central processing unit of a computer. Main
Page 5: chowdhuryjoyportfolio.files.wordpress.com€¦  · Web viewMicroprocessor is an integrated circuit that contains all the functions of a central processing unit of a computer. Main

b) i…..The brackets mean "memory access". Your code would have the processor fetch a value from memory ([BX]) and

Page 6: chowdhuryjoyportfolio.files.wordpress.com€¦  · Web viewMicroprocessor is an integrated circuit that contains all the functions of a central processing unit of a computer. Main

store it into memory ([DL]), but this is not a valid encoding for the MOV instruction. In fact, there is no single x86 instruction that performs such a memory-memory operation.

ii….. The AX register is a 16-bit register whereas AL register is an 8-bit register. Thus the instruction is wrong because of size mismatch.

c)

Answer NO.3

A)

Page 7: chowdhuryjoyportfolio.files.wordpress.com€¦  · Web viewMicroprocessor is an integrated circuit that contains all the functions of a central processing unit of a computer. Main
Page 8: chowdhuryjoyportfolio.files.wordpress.com€¦  · Web viewMicroprocessor is an integrated circuit that contains all the functions of a central processing unit of a computer. Main

b)The segment registers stores the starting addresses of a data. To get the exact location of data or instruction within a segment, an offset value is required. To reference any memory location in a segment, the processor combines the segment address in the segment register with the offset value of the location.

c)