I need to write a delay subroutine. It should delay about 1 second. It has to be for 8051 environment, DS89C430 micrcontroller ( 11.0开发者_开发技巧592 MHz XTAL). How can I write this subroutine?
The following piece of code is from u-boot: /* Initialize GOT pointer. ** Global symbols can\'t be resolved before this is done, and as such we can\'t
On Gameboy Z80, exactly how does the LD HL,(SP+e) operation affect H and C flags? (Half-开发者_Python百科carry + carry)
Hello and thanks in advance, My question is if it is possible to go thro开发者_C百科ugh registers like having a pointer in one ($t0) and moving the pointer to another one ($t1).
I need help with gluLookAt function in assembler. I am very new to asm and this is just modified example from FASM but when program goes to my function it crashes for no reason.
I\'m implementing a 16-bit bit shifter to rotate bits to the left by r.I only have access to the AND, NOT and ADD operations.There are 3 condition codes: negative, zero and positive, which are set whe
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Is there any other (faster) way to get it? x86 architecture Here is what i wrote so far. #include <cstdio>
As the title says I\'m trying to do the interrut chaining. What I\'m looking for is that when the Timer Interrupt (IRQ开发者_如何学JAVA 0) is called, and the interrupt handler (ISR) finishes it execut
This question already has answers here: How to invoke a system call via syscall or sysenter in inline assembly?