• Cyberian's Gold

    Solution # 1

    Instruction Processor Hexadecimal Code Behavioral RTL
    JPL R5, [26] Falcon - A 10000 101 00011010, 1000 0101 0001 1010, 851A (R[5] ≥ 0): PC ← PC+ (26-PC);
    STS R7, R2 (100) Falcon - E 00101 111 010, 000000000000001100100, 0010 1111 0100 0000, 0000 0000 0110 0100, 2F40 0064 M[R[2]+100] ← R [7]
    STACC R4, 36 Modified EAGLE 10111 100 00100100, 1011 1100 0010 0100, BC24 M[R[4] + ([email protected]<7>)©C] ← ACC C represents the constant 36
    DIV R2 EAGLE 10000 010, 1000 0010, 82 R[0] ← R[0]/R[2] R[2] ← R[0]%R[2]
    SHIFTL R5, R2, 7 FALCON - A 01100 101 010 00111, 0110 0101 0100 0111, 6547 R[5]<15…0> ← R [2]<(15- N)…0>©([email protected]) N represents constant 7

    Solution # 2

    Instruction Value of Destination Operand Data Bus <15…0> Address Bus (15…0>
    LDACC B 55CEh 55CEh 3320h
    SUB R1 55B9h N/A N/A
    LDACC C 2015h 2015h AB0Eh
    ADD R2 45E0h N/A N/A
    STACC A 45E0h 45E0h AB10h

    Table 3 Data Bus and Address Bus Contents for Modified Eagle

    Calculation Steps (Instruction-By-Instruction)

    • LDACC B
    LDACC stands for load accumulator. In LDACC, the destination operand is accumulator and source operand is the memory location labelled as B. The memory label B points to the memory address 3320h. When this instruction is executed, the value stored at memory address 3320h will be read and loaded in Accumulator register. This address 3320h will be copied into Address Bus which will then read its contents from memory and load the contents at data bus. The operand size in Modified EAGLE is 2-byte. Therefore, the values stored at addresses 3320h and 3321h will be loaded at data bus. These values are CEh and 55h respectively. Since, Modified EAGLE employs Little endian notation hence, the 2-bye value will be read as 55CEh. The value of data bus will also be 55CEh and this will be loaded into destination operand Accumulator.
    • SUB R1
    SUB R1 means to subtract the value of source operand register R1 which is 0015h, from the destination operand Accumulator (ACC) register which contains 55CEh. The result of subtraction will be stored back into ACC. After subtraction, the value stored in ACC will be 55B9h. Because SUB is not a memory instruction, we are not concerned with the contents of Data Bus or Address Bus because the values we need to execute the instruction are already available in registers. Hence, Data Bus and Address Bus values will be labelled as N/A.
    • LDACC C
    When this instruction is executed, the value stored at memory address labelled with C is read and loaded in Accumulator register ACC. In this case, the address of the C is AB0Eh which is also the value of address bus. The operands in Modified EAGLE are 2-byte values. The contents at addresses AB0Eh and AB0Fh will be copied into data bus which will then be loaded into ACC register. These contents are 15h and 20h. Due to Little endian notation, the 2-bye value will be 2015h. The value of data bus will be 2015h and same will be loaded in destination register ACC.
    • ADDR2
    When ADD is executed, the value of register R2 is added to ACC register. Hence, after the execution, the ACC register will hold 45E0h. AS usual, ADD is not a memory instruction, so we are not concerned with the values of Data Bus and Address Bus and both are labelled as N/A.
    • STACC A
    STACC stands for Store ACC. There is one destination operand which is a memory label A. When the instruction is executed, the value of Accumulator register ACC is stored at the memory address labelled by A. The destination memory address will be AB10h. The value of ACC is 45E0h will be stored as address AB10h. However, due to Little-Endian notation, the address will be stored as E0h at memory location AB10h and then 45h at memory location AB11h.

  • Cyberian's Gold

    Solution # 1

    Instruction Processor Hexadecimal Code Behavioral RTL
    JPL R5, [26] Falcon - A 10000 101 00011010, 1000 0101 0001 1010, 851A (R[5] ≥ 0): PC ← PC+ (26-PC);
    STS R7, R2 (100) Falcon - E 00101 111 010, 000000000000001100100, 0010 1111 0100 0000, 0000 0000 0110 0100, 2F40 0064 M[R[2]+100] ← R [7]
    STACC R4, 36 Modified EAGLE 10111 100 00100100, 1011 1100 0010 0100, BC24 M[R[4] + ([email protected]<7>)©C] ← ACC C represents the constant 36
    DIV R2 EAGLE 10000 010, 1000 0010, 82 R[0] ← R[0]/R[2] R[2] ← R[0]%R[2]
    SHIFTL R5, R2, 7 FALCON - A 01100 101 010 00111, 0110 0101 0100 0111, 6547 R[5]<15…0> ← R [2]<(15- N)…0>©([email protected]) N represents constant 7

    Solution # 2

    Instruction Value of Destination Operand Data Bus <15…0> Address Bus (15…0>
    LDACC B 55CEh 55CEh 3320h
    SUB R1 55B9h N/A N/A
    LDACC C 2015h 2015h AB0Eh
    ADD R2 45E0h N/A N/A
    STACC A 45E0h 45E0h AB10h

    Table 3 Data Bus and Address Bus Contents for Modified Eagle

    Calculation Steps (Instruction-By-Instruction)

    • LDACC B
    LDACC stands for load accumulator. In LDACC, the destination operand is accumulator and source operand is the memory location labelled as B. The memory label B points to the memory address 3320h. When this instruction is executed, the value stored at memory address 3320h will be read and loaded in Accumulator register. This address 3320h will be copied into Address Bus which will then read its contents from memory and load the contents at data bus. The operand size in Modified EAGLE is 2-byte. Therefore, the values stored at addresses 3320h and 3321h will be loaded at data bus. These values are CEh and 55h respectively. Since, Modified EAGLE employs Little endian notation hence, the 2-bye value will be read as 55CEh. The value of data bus will also be 55CEh and this will be loaded into destination operand Accumulator.
    • SUB R1
    SUB R1 means to subtract the value of source operand register R1 which is 0015h, from the destination operand Accumulator (ACC) register which contains 55CEh. The result of subtraction will be stored back into ACC. After subtraction, the value stored in ACC will be 55B9h. Because SUB is not a memory instruction, we are not concerned with the contents of Data Bus or Address Bus because the values we need to execute the instruction are already available in registers. Hence, Data Bus and Address Bus values will be labelled as N/A.
    • LDACC C
    When this instruction is executed, the value stored at memory address labelled with C is read and loaded in Accumulator register ACC. In this case, the address of the C is AB0Eh which is also the value of address bus. The operands in Modified EAGLE are 2-byte values. The contents at addresses AB0Eh and AB0Fh will be copied into data bus which will then be loaded into ACC register. These contents are 15h and 20h. Due to Little endian notation, the 2-bye value will be 2015h. The value of data bus will be 2015h and same will be loaded in destination register ACC.
    • ADDR2
    When ADD is executed, the value of register R2 is added to ACC register. Hence, after the execution, the ACC register will hold 45E0h. AS usual, ADD is not a memory instruction, so we are not concerned with the values of Data Bus and Address Bus and both are labelled as N/A.
    • STACC A
    STACC stands for Store ACC. There is one destination operand which is a memory label A. When the instruction is executed, the value of Accumulator register ACC is stored at the memory address labelled by A. The destination memory address will be AB10h. The value of ACC is 45E0h will be stored as address AB10h. However, due to Little-Endian notation, the address will be stored as E0h at memory location AB10h and then 45h at memory location AB11h.

  • Cyberian's Gold

    @Ahsan-Waheed said in CS501 Assignment 2 Solution and Discussion:

    @zareen This is not a right assignment solution

    this is not a solution just idea how to solve the question.

    f85aff3a-865b-4bc6-b7a7-6fe281c2e3ac-image.png
    ceb1695a-5822-4980-8e8c-a3b4e94fa4cd-image.png

    cs501 assignment 2 idea solution…docx

  • Cyberian's Gold

    @Ahsan-Waheed said in CS501 Assignment 2 Solution and Discussion:

    @zareen This is not a right assignment solution

    this is not a solution just idea how to solve the question.


  • @zareen This is not a right assignment solution

  • Cyberian's Gold

    jump instruction
    b7008c25-f048-46f3-9b8c-c0bca40c0ba8-image.png

  • Cyberian's Gold

    Control Instruction
    5c133d07-ce7b-4c97-a9d4-70dc4adfbba5-image.png

  • Cyberian's Gold

    We have looked at the various jump instructions in our study of the FALCON-A. Using that knowledge, this problem can be solved easily.
    0ef8e85e-982c-4123-a722-38ba048256a6-image.png

  • Cyberian's Gold

    Solution
    Addressing modes relate to the way architectures specify the address of the objects they access. These objects may be constants and registers, in addition to memory locations.
    bfd20701-e200-4cc6-b14d-577fcb582667-image.png

  • Cyberian's Gold

    Fields in the FALCON-A InstructionsWe now use the RTL naming operator to name the various fields of the RTL instructions.Naming the fields appropriately helps us make the study of the behavior of a processormore readable.op<4…0>:= IR<15…11>:operation code fieldra<2…0> := IR<10…8>:target register fieldrb<2…0> := IR<7…5>:operand or address indexrc<2…0> := IR<4…2>:second operandc1<4…0> := IR<4…0>:short displacement fieldc2<7…0> := IR<7…0>:long displacement or the immediate field

  • Cyberian's Gold

    A better method is to use the addi instruction with the constant set to 0.
    e4deab6a-7149-48ff-a6a0-03482bce61d9-image.png

  • Cyberian's Gold

    This instruction is to load a register from an input/output device. The effective address of the I/O device has to be calculated before it is accessed to read the word into the destination register ra, as shown in the example:in R5, R4(100)In RTL:R[5]←IO[R[4]+100]

  • Cyberian's Gold

    ce783c86-e64f-4036-8a4d-0c97e30cb031-image.png

  • Cyberian's Gold

    We can also find the machine code for these instructions. The machine code (in the hexadecimal representation) is given for these instructions in the given table.
    541367a2-d798-4e68-b10c-646873903d63-image.png

Insaf Sehat Card Live Cricket Streaming
Quiz 100% Result Quiz 100% Result
| |