1. Write code to turn on bit 4 of PORTC, where bit 4 is configured as output bit.
2. What does this code in assembly do? You can write your answer in a high-level language like C.
MOVF Q,W
SUBWF P,F
Ans.
1)
C code:
#include<p18f452.h>
int main()
{
TRISC.F3 = 0; //Configure 4th bit of PORTC as Output.
PORTC.F3 = 1; //Turn on 4th bit of PORTC.
return (0);
}
2)
MOVF Q,W :
It is used to move contents of Q register , if W=0,contents of Q register is moved to Working register WREG. If W=1,the contents of register Q is copied to itself this is used to check if a register has value zero as when the value is copied to itself the zero flag is affected ie, if the content is zero after this instructon z flag goes high.
SUBWF P,F :
Substracts W register from P register and if F is 0 result is stored in WREG (Working register) else if F is 1, result is stored back to the file register P.
1. Write code to turn on bit 4 of PORTC, where bit 4 is configured as...
Answer showing the details 11. Write instructions in assembly language to set all PORTC as output and turn on alternate pins of PORTC I D
Answer showing the details 11. Write instructions in assembly language to set all PORTC as output and turn on alternate pins of PORTC I D
(f) and (g) please
f and g please
letters Question 2 Indirect addressing mode in assembly language is sanilar to pointers in C. Answer the following questions: (1 point) a) How many 8-bit registers can a FSR access in the PICI8F452 MCU? b) Write the assembly language command to load the address of the variable with name: PVal into one of the FSR? (2 points) (2 points) (2 points) c) What is the meaning of: movf PREINC2, F? d) What...
Create an algorithm to count the number of 1’s in a 32-bit number. Implement the program in a high level language like C or Java. It does not need to run for me, but the code should be included in a text document called FirstnameLastnameHLA3.txt along with your assignment submission. Implement the program in MIPSzy Assembly language. Use the high level code as comments to the right of the Assembly code as the textbook does. If you write that MIPSzy...
Write a code to simulate an 8-bit running lights in assembly language. You can use NASM as a simulator for this task.
Practice Problem [no points]: You should read and understand Fibonacci algorithm, write a code in a high level language of your choice and in Assembly to find a Fibonacci number and check your result. At the end of this assignment a possible solution to this problem is given both in Python and MIPS assembler. Note that it would have been possible to write the Python differently to achieve the same function. . [20 points] Write and debug a MIPS program...
Consider the following assembly language code. The clock frequency is 4 MHz- and all initialization steps have been done correctly (like setting up digital I/O, the oscillator configuration, etc.) Constants Bit Pattern EQU H'20' LoopCtr EQU H'21' Max Count EQU .23; Main program loop MainLoop CLRF BitPattern CALL Output BSF BitPattern, 1 CALL Output RRF BitPattern CALL Output BSF BitPattern, 1 CALL Output GOTO MainLoop Output MOVF BitPattern, W MOVWF PORTB MOVLW MaxCount MOVWF LoopCtr Loop NOP DECFSZ LoopCtr GOTO...
The following code implements some Pulse Width Modulation (PWM) code and interacts with a Curiosity board (usual connections of pushbutton on portC pin4 (logic 0 when pressed), LEDs on portA pins 1, 2 and 5, and portC pin 5, and Potentiometer on portC pin 0 - not all used here). Note the following relationship for the duty cycle 96DutyCycle DutyCycleNumber The Duty cycle (as a percentage of 100) is set by 80 100 PWM_init); // initialisation of PWM module 1...
Write the MIPS assembly code that creates the 32-bit constant 0010 0000 0000 0001 0100 1001 0010 0100 and stores that value to register $t1. From previous answers, I see that there is an lui and ori code. Where do those come from? Do they come from the mips reference sheet? Can I get a good explanation please.?
Problem 1 Write a find subroutine that can locate a specified 8-bit quantity in a null-terminated string 8-bit quantities. (Remember that null terminated means "it ends with zero"). The subroutine is passed two parameters. The pointer to the array is passed in array X, the value to be found is passed in ACCA. The function should return the index of the first occurrence of the value in ACCB, or -1 (0xFF) if the value is not found. a) Write the...
Write code to implement the following function: /* * Generate mask indicating leftmost 1 in x. Assume w=32. * For example 0xFF00 -> 0x8000, and 0x6600 --> 0x4000. * If x = 0,then return 0. */ int leftmost_one(unsigned x); Your function should follow the above bit-level integer coding rules, except that you may assume that data type int has w=32 bits. Your code should contain a total of at most 15 arithmetic, bit-wise, and logical operations. In C++ and has...