You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
261 B
C
17 lines
261 B
C
3 years ago
|
#ifdef _DEBUG
|
||
|
#include <stdio.h>
|
||
|
unsigned int patch(unsigned int x);
|
||
|
|
||
|
int main() {
|
||
|
unsigned int x = 1000 * 100;
|
||
|
unsigned int y = 2310 * 100 + 72;
|
||
|
unsigned int z = patch(y);
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
#endif
|
||
|
|
||
|
unsigned int patch(unsigned int x) {
|
||
|
return x & ~(1 << 17);
|
||
|
}
|