Hej,
przepraszam adminów jeśli zły działl Szukam wsparcia ;)
Potrzebuję pomocy przy egzaminie zdalnie, grupa na fb, skype lub zoomie. Pojawią się takie przykładowe pytania:
1. Consider the following program fragment for our STM32F303 (clock frequency 8 MHz):
mov r10, #7
m: adds r10, r10, #1
cmp r10, #12
bne m
How long does the execution of this program fragment take at most in µs?
2. What is the value of y (hexadecimal)?
uint8_t x, y;
x = 0x3b;
a) y = x | 0x08;
b) y = x ^ 128;
c) y = x << 1;
d) y = x / 5;
e) y = x + 0xf0;
f) y = ~x;