Page 1 of 1

Wombat 1.1 A function is defined as follows: (n-2 for n<1 (n) = n+5 for n=1 m2 - 2n+1 forn > 1 Write Wombati machine lan

Posted: Fri Apr 29, 2022 6:48 am
by answerhappygod
Wombat 1 1 A Function Is Defined As Follows N 2 For N 1 N N 5 For N 1 M2 2n 1 Forn 1 Write Wombati Machine Lan 1
Wombat 1 1 A Function Is Defined As Follows N 2 For N 1 N N 5 For N 1 M2 2n 1 Forn 1 Write Wombati Machine Lan 1 (49.55 KiB) Viewed 24 times
Wombat 1.1 A function is defined as follows: (n-2 for n<1 (n) = n+5 for n=1 m2 - 2n+1 forn > 1 Write Wombati machine language program that reads an input integer value n, and computes and displays the output of the above function f(n). In the binary version of your programs that can be executed on the CPUSim simulator, you are also required to write as comments the line number/address, equivalent decimal version of the binary and appropriate comments to explain cach line in your program. The decimal version of the program represents each binary line as two decimal values (first value is the opcode--4 bits; second value is the operand memory address – 12 bits). Therefore, cach line of your program should be formatted as follows: Binary-number, Semi-colon, Line-number/address, Decimal-opcode, Decimal-operand/address, Comments As an example, suppose you are writing a program to read and display a number. This program ap could be written as follows: 00110000000000000: 30 read a into accumulator 0010000000001010 ; 2: 2 10 store n at location 10 0001000000001010; 4: 1 10 loads from location 10 0100000000000000 ; 6: 40 output 00000000000000009: stop 0000000000000000; 10:00 storage location for a