Assmbly13 Lecture 1 Intro Review

download Assmbly13 Lecture 1 Intro Review

of 65

Transcript of Assmbly13 Lecture 1 Intro Review

  • 8/13/2019 Assmbly13 Lecture 1 Intro Review

    1/65

    9/30/2013 1

    CSW 353

    AssemblyLanguage

    Dr. Salma [email protected]

    mailto:[email protected]:[email protected]
  • 8/13/2019 Assmbly13 Lecture 1 Intro Review

    2/65

    9/30/2013 2

    Computer Architecture

    Computer = HW + SW

  • 8/13/2019 Assmbly13 Lecture 1 Intro Review

    3/65

    9/30/2013 3

    Computer Architecture(cont.)

    Design (implementation):specs develop HW forthe system: what HW to use and how to connect

    the parts.

    Organization: the way the HW components

    operate they are in place and we investigate

    the organizational structure to verify the

    computer parts operate as intended.

    Architecture: structure and behavior of the

    computer as seen by the user. Includes

    information format, instruction set, techniques for

    addressing memory.

  • 8/13/2019 Assmbly13 Lecture 1 Intro Review

    4/65

    9/30/2013 4

    Computer Architecture(cont.)

  • 8/13/2019 Assmbly13 Lecture 1 Intro Review

    5/65

    9/30/2013 5

    Computer Architecture(cont.)

  • 8/13/2019 Assmbly13 Lecture 1 Intro Review

    6/65

    9/30/2013 6

    Computer Architecture(cont.)

  • 8/13/2019 Assmbly13 Lecture 1 Intro Review

    7/65

    Instruction Set Architecture

    Instruction Set Architecture (ISA) can bedefined as an interface to allow easy

    communication between the programmer

    and the hardware.

    ISA prepares the microprocessor to respond

    to all the user commands like execution of

    data, copying data, deleting it, editing, etc.

    79/30/2013

  • 8/13/2019 Assmbly13 Lecture 1 Intro Review

    8/65

    Instruction Set Architecture(cont.)

    89/30/2013

    ISA

    IS AddressingMode

    The group of

    instructions given to

    the computer.

    Opcode + Operand

    The manner of

    accessing memory

    Direct vs indricet.

  • 8/13/2019 Assmbly13 Lecture 1 Intro Review

    9/65

    Instruction Set Architecture(cont.)

    Does the computer performance depend onISA?

    CPU performance depends on InstructionCount, CPI (Cycles per instruction) and Clock

    cycle time. And all three are affected by the

    instruction set architecture. 99/30/2013

  • 8/13/2019 Assmbly13 Lecture 1 Intro Review

    10/65

    CISC and RISC Architectures

    Intel supporters want the hardware to bear moreresponsibility and software on the easier side. This

    would impact the hardware designing to be more

    complex but software coding would be relatively

    easy. On the other hand, Apple supporters want

    the hardware to be simple and easy and software

    to take the major role.

    Intels hardware oriented approach is termed asComplex Instruction Set Computer (CISC) while

    that of Apple is Reduced Instruction Set Computer

    (RISC). 109/30/2013

  • 8/13/2019 Assmbly13 Lecture 1 Intro Review

    11/65

    CISC and RISC Architectures(cont.)

    Complex Instruction Set Computer (CISC)Attempts to minimize the number of

    instructions per program, sacrificing the

    number of cycles per instruction. Reduced Instruction Set Computer (RISC)

    reducing the cycles per instruction (i.e.

    simple instructions take less time tointerpret) at the cost of the number of

    instructions per program.119/30/2013

    CISC d RISC A hi ( )

  • 8/13/2019 Assmbly13 Lecture 1 Intro Review

    12/65

    CISC and RISC Architectures(cont.)

    CISC Architecture Memory was expensive bigger program more

    storage more money.

    Reduce number of instructions per program by having

    multiple operations within a single instruction.

    Lead to many different kinds of instructions that

    access memory.

    Variable length instruction.

    Unpredictable fetch-decode-execute time.

    More complex instruction set Handled by

    hardware.

    Example: x86 ISA 129/30/2013

    CISC d RISC A hi ( )

  • 8/13/2019 Assmbly13 Lecture 1 Intro Review

    13/65

    CISC and RISC Architectures(cont.)

    RISC Architecture To reduce the ISA Provide minimal set of instructions

    that could carry out all essential operations.

    Instruction complexity is reduced by:

    1. Having few simple instructions that are the same length.

    2. Allow memory access only with explicit load/store

    instructions.

    Each instruction performs less work.

    Instruction execution time among different instructionsis consistent.

    The complexity that is removed from ISA is moved into

    the domain of the assembly programmer/compiler.

    Exam les: LC3 MIPS PowerPC IBM SPARC Sun .139/30/2013

  • 8/13/2019 Assmbly13 Lecture 1 Intro Review

    14/65

    CISC and RISC Architectures(cont.)

    CISC Many complex

    instructions.

    Variable length

    instructions.

    Complexity in microcode.

    Many instructions can

    access memory.

    Many addressing modes.

    149/30/2013

    RISC Simple instructions, few

    in number.

    Fixed length instructions.

    Complexity in compiler.

    Only LOAD/STORE

    instructions access

    memory.

    Few addressing modes.

  • 8/13/2019 Assmbly13 Lecture 1 Intro Review

    15/65

    9/30/2013 15

    CISC and RISC Architectures(cont.)

    Intel x86 CISC. Motorola/PowerPC RISC.

    So the type of binaries/programs which

    run are different.

    Intel runs Linux/Windows.

    RISC runs Macintosh/apple computers

    (latest have Intel also).

  • 8/13/2019 Assmbly13 Lecture 1 Intro Review

    16/65

    9/30/2013 16

    Building A Computer

    Adapt an architecture.

    Implement the design, organization, and

    IS of that architecture.

    - CISC

    - Mano

    - Intel x86

  • 8/13/2019 Assmbly13 Lecture 1 Intro Review

    17/65

    9/30/2013 17

    Computer Architecture(cont.)

    x86 assembly languages are used toproduce object code for the x86 class of

    processors.

    8086 Assembly.

  • 8/13/2019 Assmbly13 Lecture 1 Intro Review

    18/65

    What is Assembly Language?

    Talking to your Computer1- Machine Language

    2- Assembly Language

    3- High-level Language

    18

  • 8/13/2019 Assmbly13 Lecture 1 Intro Review

    19/65

    What is Assembly Language?(cont.)

    Talking to your Computer

    2- Assembly Language

    -English-like abbreviations.

    -Requires assembler.

    -Still too many instructions.

    19

  • 8/13/2019 Assmbly13 Lecture 1 Intro Review

    20/65

    What is Assembly Language?(cont.)

    A low-level programming language inwhich there is a very strong

    correspondence between the language

    and the architecture's machine codeinstructions.

    Each assembly language is specific to aparticular computer architecture.

    Converted into executable machine

    code b an assembler.209/30/2013

  • 8/13/2019 Assmbly13 Lecture 1 Intro Review

    21/65

    9/30/2013 21

    CSW 353(Assembly Language)

    Computer

    Architecture

  • 8/13/2019 Assmbly13 Lecture 1 Intro Review

    22/65

    Course LogisticsObjectives

    Know the basics of computer organization and instruction

    set architecture.

    Know the basic components of modern computers, and

    understand how they work.

    Understand how processing, memory and input/outputsystems are organized and how pipelining could improve

    the performance of a computer.

    Elaborate the knowledge by building a simple computer

    using either a programming language or drawing a chart.

    Solve problems related to processor, memory and

    input/output performance.

    22

  • 8/13/2019 Assmbly13 Lecture 1 Intro Review

    23/65

    Course LogisticsStaff

    Teachers

    Dr. Tamer Mostafa

    [email protected]

    Dr. Salma Hamdy

    [email protected]

    Course page

    https://piazza.com/faculty_of_computer_and_information_sciences/fall

    2013/csw353/home

    Access Code: csw353

    23

    mailto:[email protected]:[email protected]://piazza.com/faculty_of_computer_and_information_sciences/fall2013/csw353/homehttps://piazza.com/faculty_of_computer_and_information_sciences/fall2013/csw353/homehttps://piazza.com/faculty_of_computer_and_information_sciences/fall2013/csw353/homehttps://piazza.com/faculty_of_computer_and_information_sciences/fall2013/csw353/homehttps://piazza.com/faculty_of_computer_and_information_sciences/fall2013/csw353/homehttps://piazza.com/faculty_of_computer_and_information_sciences/fall2013/csw353/homehttps://piazza.com/faculty_of_computer_and_information_sciences/fall2013/csw353/homehttps://piazza.com/faculty_of_computer_and_information_sciences/fall2013/csw353/homehttps://piazza.com/faculty_of_computer_and_information_sciences/fall2013/csw353/homehttps://piazza.com/faculty_of_computer_and_information_sciences/fall2013/csw353/homehttps://piazza.com/faculty_of_computer_and_information_sciences/fall2013/csw353/homehttps://piazza.com/faculty_of_computer_and_information_sciences/fall2013/csw353/homemailto:[email protected]:[email protected]
  • 8/13/2019 Assmbly13 Lecture 1 Intro Review

    24/65

    Course LogisticsGeneral

    Class meets: Saturday 11:00-14:00

    Monday 11:00-14:00

    Lab meets:check your schedule!

    (3-hour lecture + 3-hour lab) a week.

    Assessment (100 points)

    Final Term Examination 65

    Practical Work 25

    Mid Term Examination 10

    YOUR JOB

    read + think + solve + code

    = HW + lab tasks + exams

    24

  • 8/13/2019 Assmbly13 Lecture 1 Intro Review

    25/65

    Course LogisticsEthics

    Lecture

    1. Time management

    2. Attendance

    3. Manners

    4. Mind + hands (if possible)

    5. Your rights.

    6. My rights.

    7. Questions

    Lab

    1. Time management

    2. Attend ONLY in your class.

    3. Manners

    4. Mind + hands (BOTH!!!)

    5. Your rights.

    6. TAsrights.

    7. Questions

    Cheating and copied assignments, programs,

    projects, or code segments, will not be tolerated.25

  • 8/13/2019 Assmbly13 Lecture 1 Intro Review

    26/65

    Course LogisticsTextbook

    M. Morris Mano, Computer SystemArchitecture 3rdedition, Prentice Hall, 1992.

    8086 Assembly reference to be decided.26

  • 8/13/2019 Assmbly13 Lecture 1 Intro Review

    27/65

    Course LogisticsTextbook Outline

    Chapters 1-4present the various digital components

    used in the organization and design of computer

    systems.

    Chapters 5-7cover the steps that a designer must go

    through to design and program an elementary digital

    computer.

    Chapters 8-9deal with the architecture of the central

    processing unit.

    Chapters 11,12 present the organization and

    architecture of the input-output processor and the

    memory unit. 27

  • 8/13/2019 Assmbly13 Lecture 1 Intro Review

    28/65

    Course LogisticsTextbook Outline

    28

    Chapter 1:Digital Logic Circuits

    Chapter 2:Digital Components

    Chapter 3:Data Representation

    Chapter 4:Microoperations

  • 8/13/2019 Assmbly13 Lecture 1 Intro Review

    29/65

    Course LogisticsTextbook Outline

    29

    Chapter 1:Digital Logic Circuits

    Chapter 2:Digital Components

    Chapter 3:Data Representation

    Chapter 4:Microoperations

    Chapter 5:Basic Computer OrganizationChapter 6:Programming the Basic Computer

    Chapter 7:Microporgammed Control

  • 8/13/2019 Assmbly13 Lecture 1 Intro Review

    30/65

    Course LogisticsTextbook Outline

    30

    Chapter 1:Digital Logic Circuits

    Chapter 2:Digital Components

    Chapter 3:Data Representation

    Chapter 4:Microoperations

    Chapter 5:Basic Computer OrganizationChapter 6:Programming the Basic Computer

    Chapter 7:Microporgammed Control

    Chapter 8:CPU

    Chapter 11:I/O Organization

    Chapter 12:Memory Organization

  • 8/13/2019 Assmbly13 Lecture 1 Intro Review

    31/65

    Review of Digital

    Design Basics1. Logic Gates

    2. Boolean Algebra3. Combinational Circuits

    4. Clock

    5. Flip-Flops

    6. Sequential Circuits

  • 8/13/2019 Assmbly13 Lecture 1 Intro Review

    32/65

    1. Logic Gates

    Two voltage levelshigh and low (1 and0, true and false).

    Hence, the use of binary

    arithmetic/logicin all computers.

    The manipulation of binary information

    is done by logic circuits called gates(AND, OR, NOT, etc.)

    329/30/2013

  • 8/13/2019 Assmbly13 Lecture 1 Intro Review

    33/65

    2. Boolean Algebra

    Equations involving two values andthree primary operators:

    OR: symbol + , X = A +B X is true if

    at least one of A or B is true

    AND: symbol ., X = A .B X is true if

    both A and B are true NOT : symbol , X = A X is the

    inverted value of A (or symbol ).339/30/2013

  • 8/13/2019 Assmbly13 Lecture 1 Intro Review

    34/65

    2. Boolean AlgebraBasic Rules

    349/30/2013

  • 8/13/2019 Assmbly13 Lecture 1 Intro Review

    35/65

    2. Boolean AlgebraDeMorgansLaws

    359/30/2013

  • 8/13/2019 Assmbly13 Lecture 1 Intro Review

    36/65

    2. Boolean AlgebraLogic Function

    Representation:- Algebraic expression

    - Truth table

    - Logic Diagram

    369/30/2013

  • 8/13/2019 Assmbly13 Lecture 1 Intro Review

    37/65

    2. Boolean AlgebraLogic Function

    A truth table defines the outputs of a logicblockfor each set of inputs.

    Consider a block with 3 inputs A, B, C and an

    output E that is true only if exactly 2 inputsare true.

    379/30/2013

    Can be compressed by only

    representing cases that

    have an output of 1 map

    simplification

  • 8/13/2019 Assmbly13 Lecture 1 Intro Review

    38/65

    2. Boolean AlgebraLogic Block

    A logic block has a number of binary inputs and

    produces a number of binary outputs the

    simplest logic block is composed of a few

    transistors.

    A logic block is termed combinational if the

    output is only a function of the inputs.

    A logic block is termed sequentialif the block has

    some internal memory (state) that also influences

    the output.

    A basic logic block is the gate (AND, OR, NOT, etc.)389/30/2013

  • 8/13/2019 Assmbly13 Lecture 1 Intro Review

    39/65

    3. Combinational Circuits

    A connected arrangement of logic gates witha set of inputs and outputs.

    For generating binary control decisions, and

    provide components required for dataprocessing.

    399/30/2013

  • 8/13/2019 Assmbly13 Lecture 1 Intro Review

    40/65

    3. Combinational Circuits(cont.)

    Designing a combinational circuit:1. State problem.

    2. Assign letters to input and output variables.

    3. Define truth table.4. Simplify Boolean function for each output.

    5. Draw logic diagram.

    409/30/2013

  • 8/13/2019 Assmbly13 Lecture 1 Intro Review

    41/65

    3. Combinational Circuits(cont.)

    Example1:Addition of two bits (half-adder)

    419/30/2013

  • 8/13/2019 Assmbly13 Lecture 1 Intro Review

    42/65

    3. Combinational Circuits(cont.)

    Example2:Addition of three bits (full-adder)

    429/30/2013

  • 8/13/2019 Assmbly13 Lecture 1 Intro Review

    43/65

    4. Clock

    A microprocessor is composed of many different circuits

    that are operating simultaneouslyif each circuit X takes

    in inputs at time TIX, takes time TEXto execute the logic,

    and produces outputs at time TOX, imagine the

    complications in co-ordinating the tasks of every circuit.

    A major school of thought (used in most processors built

    today): all circuits on the chip share a clock signal (a

    square wave) that tells every circuit when to accept

    inputs, how much time they have to execute the logic,and when they must produce outputs.

    439/30/2013

  • 8/13/2019 Assmbly13 Lecture 1 Intro Review

    44/65

    9/30/2013 44

    Cycle time

    Rising clock edge

    Falling clock edge

    4 GHz = clock speed = 1

    cycle time

    4. Clock(cont.)

  • 8/13/2019 Assmbly13 Lecture 1 Intro Review

    45/65

    5. Flip Flops

    Until now, circuits were combinationalwhen

    inputs change, the outputs change after a while

    (time = logic delay through circuit).

    Most systems include storage elements need a

    signal to affect the stored value at discrete

    instants of time clock pulse.

    459/30/2013

    ( )

  • 8/13/2019 Assmbly13 Lecture 1 Intro Review

    46/65

    5. Flip Flops(cont.)

    Flip-flop: a binary cell capable of storingone bit of information.

    Maintains state until directed by a clock

    (rising edge or falling edge) to switchstate.

    Different types according to number ifinputs and manner by which inputs

    affects state.469/30/2013

    l l ( )

  • 8/13/2019 Assmbly13 Lecture 1 Intro Review

    47/65

    5. Flip Flops(cont.)

    SR Flip-flop Inputs : S (Set) R (Reset), C (Clock).

    No clock no state change.

    Clock change from 0 to 1 output affected.

    479/30/2013

    li l ( )

  • 8/13/2019 Assmbly13 Lecture 1 Intro Review

    48/65

    5. Flip Flops(cont.)

    JK Flip-flop

    Refinement of the SR.

    489/30/2013

    i l i i

  • 8/13/2019 Assmbly13 Lecture 1 Intro Review

    49/65

    6. Sequential Circuits

    Consists of combinational circuit and a storage

    element.

    Rising edge of clock causes the statestorage to

    store some input values.

    This state will not change for an entire cycle (until

    next rising edge).

    499/30/2013

    6 S i l Ci i ( )

  • 8/13/2019 Assmbly13 Lecture 1 Intro Review

    50/65

    6. Sequential Circuits(cont.)

    Combinational circuit has some time to accept the

    value of state and inputs and produce

    outputs.

    Some of the outputs (for example, the value of

    next state) may feed back (but through the

    latch) so theyreonly seen in the next cycle.

    509/30/2013

    6 S i l Ci i ( )

  • 8/13/2019 Assmbly13 Lecture 1 Intro Review

    51/65

    6. Sequential Circuits(cont.)

    specified by a time sequence of externalinputs, external outputs, and internal flip-

    flop binary states.

    Representation:

    Boolean expression (for combinational part).

    State table.

    State diagram.

    519/30/2013

  • 8/13/2019 Assmbly13 Lecture 1 Intro Review

    52/65

    6 S ti l Ci it ( t )

  • 8/13/2019 Assmbly13 Lecture 1 Intro Review

    53/65

    9/30/2013 53

    6. Sequential Circuits(cont.)

    Example3:

    State Table

    6 S ti l Ci it ( t )

  • 8/13/2019 Assmbly13 Lecture 1 Intro Review

    54/65

    6. Sequential Circuits(cont.)

    Example3:

    State Diagram

    549/30/2013

    00 01

    0/1

    6 S ti l Ci it ( t )

  • 8/13/2019 Assmbly13 Lecture 1 Intro Review

    55/65

    6. Sequential Circuits(cont.)

    Example3:

    State Diagram

    559/30/2013

    6 S ti l Ci it ( t )

  • 8/13/2019 Assmbly13 Lecture 1 Intro Review

    56/65

    6. Sequential Circuits(cont.)

    Example4: 2-bit counter

    Consider a clocked sequential circuit that

    goes through a sequence of repeated binary

    states 00, 01, 10, and 11 when an externalinput x is equal to 1.

    Draw the state diagram.

    569/30/2013

    6 S ti l Ci it ( t )

  • 8/13/2019 Assmbly13 Lecture 1 Intro Review

    57/65

    9/30/2013 57

    6. Sequential Circuits(cont.)

    Example4: 2-bit counter

    6 S ti l Ci it ( t )

  • 8/13/2019 Assmbly13 Lecture 1 Intro Review

    58/65

    9/30/2013 58

    6. Sequential Circuits(cont.)

    Example4: 2-bit counter

    x A

    B

    Clock

    FF

    FF

    ?

    6 S ti l Ci it ( t )

  • 8/13/2019 Assmbly13 Lecture 1 Intro Review

    59/65

    9/30/2013 59

    6. Sequential Circuits(cont.)

    Example4: 2-bit counter

  • 8/13/2019 Assmbly13 Lecture 1 Intro Review

    60/65

    9/30/2013 60

    6 Sequential Circuits (cont )

  • 8/13/2019 Assmbly13 Lecture 1 Intro Review

    61/65

    9/30/2013 61

    6. Sequential Circuits(cont.)

    Example4: 2-bit counter

    6 Sequential Circuits (cont )

  • 8/13/2019 Assmbly13 Lecture 1 Intro Review

    62/65

    6. Sequential Circuits(cont.)

    Example4: 2-bit counter

    629/30/2013

    Next Lecture

  • 8/13/2019 Assmbly13 Lecture 1 Intro Review

    63/65

    Next Lecture

    Continue review of digital design basics.

    639/30/2013

    Assignment

  • 8/13/2019 Assmbly13 Lecture 1 Intro Review

    64/65

    Assignment

    - Reading: Chapter 1.

    649/30/2013

    References

  • 8/13/2019 Assmbly13 Lecture 1 Intro Review

    65/65

    References

    - Digital Design, 4thed, M. Morris Mano, Prentice Hall,

    2006.

    -http://www.engineersgarage.com/articles/risc-and-cisc-

    architecture?page=1-http://electronics.stackexchange.com/questions/4185/what-

    are-different-types-of-computer-architectures

    -http://www.yale.edu/pclt/PCHW/clockidea.htm- God bless Google and Wiki!

    http://www.engineersgarage.com/articles/risc-and-cisc-architecture?page=1http://www.engineersgarage.com/articles/risc-and-cisc-architecture?page=1http://electronics.stackexchange.com/questions/4185/what-are-different-types-of-computer-architectureshttp://electronics.stackexchange.com/questions/4185/what-are-different-types-of-computer-architectureshttp://www.yale.edu/pclt/PCHW/clockidea.htmhttp://www.yale.edu/pclt/PCHW/clockidea.htmhttp://www.yale.edu/pclt/PCHW/clockidea.htmhttp://www.yale.edu/pclt/PCHW/clockidea.htmhttp://www.yale.edu/pclt/PCHW/clockidea.htmhttp://www.yale.edu/pclt/PCHW/clockidea.htmhttp://www.yale.edu/pclt/PCHW/clockidea.htmhttp://www.yale.edu/pclt/PCHW/clockidea.htmhttp://www.yale.edu/pclt/PCHW/clockidea.htmhttp://www.yale.edu/pclt/PCHW/clockidea.htmhttp://electronics.stackexchange.com/questions/4185/what-are-different-types-of-computer-architectureshttp://electronics.stackexchange.com/questions/4185/what-are-different-types-of-computer-architectureshttp://electronics.stackexchange.com/questions/4185/what-are-different-types-of-computer-architectureshttp://electronics.stackexchange.com/questions/4185/what-are-different-types-of-computer-architectureshttp://electronics.stackexchange.com/questions/4185/what-are-different-types-of-computer-architectureshttp://electronics.stackexchange.com/questions/4185/what-are-different-types-of-computer-architectureshttp://electronics.stackexchange.com/questions/4185/what-are-different-types-of-computer-architectureshttp://electronics.stackexchange.com/questions/4185/what-are-different-types-of-computer-architectureshttp://electronics.stackexchange.com/questions/4185/what-are-different-types-of-computer-architectureshttp://electronics.stackexchange.com/questions/4185/what-are-different-types-of-computer-architectureshttp://electronics.stackexchange.com/questions/4185/what-are-different-types-of-computer-architectureshttp://electronics.stackexchange.com/questions/4185/what-are-different-types-of-computer-architectureshttp://electronics.stackexchange.com/questions/4185/what-are-different-types-of-computer-architectureshttp://electronics.stackexchange.com/questions/4185/what-are-different-types-of-computer-architectureshttp://electronics.stackexchange.com/questions/4185/what-are-different-types-of-computer-architectureshttp://electronics.stackexchange.com/questions/4185/what-are-different-types-of-computer-architectureshttp://electronics.stackexchange.com/questions/4185/what-are-different-types-of-computer-architectureshttp://electronics.stackexchange.com/questions/4185/what-are-different-types-of-computer-architectureshttp://electronics.stackexchange.com/questions/4185/what-are-different-types-of-computer-architectureshttp://electronics.stackexchange.com/questions/4185/what-are-different-types-of-computer-architectureshttp://electronics.stackexchange.com/questions/4185/what-are-different-types-of-computer-architectureshttp://electronics.stackexchange.com/questions/4185/what-are-different-types-of-computer-architectureshttp://www.engineersgarage.com/articles/risc-and-cisc-architecture?page=1http://www.engineersgarage.com/articles/risc-and-cisc-architecture?page=1http://www.engineersgarage.com/articles/risc-and-cisc-architecture?page=1http://www.engineersgarage.com/articles/risc-and-cisc-architecture?page=1http://www.engineersgarage.com/articles/risc-and-cisc-architecture?page=1http://www.engineersgarage.com/articles/risc-and-cisc-architecture?page=1http://www.engineersgarage.com/articles/risc-and-cisc-architecture?page=1http://www.engineersgarage.com/articles/risc-and-cisc-architecture?page=1http://www.engineersgarage.com/articles/risc-and-cisc-architecture?page=1http://www.engineersgarage.com/articles/risc-and-cisc-architecture?page=1http://www.engineersgarage.com/articles/risc-and-cisc-architecture?page=1http://www.engineersgarage.com/articles/risc-and-cisc-architecture?page=1http://www.engineersgarage.com/articles/risc-and-cisc-architecture?page=1http://www.engineersgarage.com/articles/risc-and-cisc-architecture?page=1http://www.engineersgarage.com/articles/risc-and-cisc-architecture?page=1