Posts

Showing posts with the label ktu coa notes

COA : Module 6 -Part 1

COA: Module 5 -part 5

COA :Module 5 part 4

CONTROL LOGIC DESIGN 

COA :module 5 part 3

Arithmetic Circuit Design Examples 

COA : module 5-part 2

Design Of Logic circuit

COA module 5- part 1

Register Transfer Logic & Arithmetic Unit Design

COA : Module 4 part 2

CACHE MEMORY BASICS  & CACHE MAPPING FUNCTIONS WITH EXAMPLES 

COA Module 4: Part 1

Memory System ,Memory hierarchy

COA Module 3: Part 2

SCSI BUS   ,PCI BUS  ,USB   

COA :Module 3 -Part 1

I/O ORGANISATION

COA -Module 2

 Basic Processing Unit   Single bus organisation & Multiple bus organisation  Instruction Execution Arithmetic Algorithms Floating point Representation 

ADVANCED RISK MACHINE ARCHITECTURE

COMPUTER ORGANISATION & ARCHITECTURE TUTORIAL 1

Image
We can start learning basics of Computer Organisation & Architecture  .  Understand the difference between computer architecture & organisation first . BASIC OPERATIONAL CONCEPTS  We can discuss about various operations used for transferring and manipulating data BUS STRUCTURE We can consider definition of BUS also about way of transferring data through Bus . MEMORY LOCATIONS & ADDRESSING Understand the basics of System Memory ,way of storing data in memory.  W can discuss here about memory addresses and about Byte addressable memory .At the end we will get the idea about memory size specification and how to calculate the address of memory bytes . INSTRUCTION EXECUTION &STRAIGHT LINE SEQUENCING Understand what an instruction is ,then learn about how to complete the execution of a program which is present in main memory of the system by executing set of instructions one after another . Here consider , two situations of instruction executi...

SUBROUTINE &STACK

Image
SUBROUTINE &STACK       In  a given program ,it is often necessary to perform a particular task many times on  different  data values . When a program branches to a subroutine, we say that it is calling the  subroutine . The instruction that performs the branch operation is called a call_subroutine   instruction. After a subroutine has been executed, subroutine is said to return to the program  that called it   by executing a Return instruction . T he calling program must resume  execution  , continuing   immediately after the instruction that called the subroutine. Call subroutine is a special branch instruction that performs the following operations • store the contents of the PC in the link register (LR) • branch to the target address specified by the instruction The return from a subroutine branches to the address contained in the link register . Subroutine Nesting and The Processor Stack When ...