blob: db8543daa4e08ee2fdd11a131ae7c34593573bc0 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
|
#include <common.h>
#include <gui.h>
#include <stddef.h>
#include <stdint.h>
#include <stdio.h>
#include <syscall.h>
#include <unistd.h>
void test(u8 *data)
{
printf(".");
}
u32 cpu_flags()
{
u32 flags;
asm volatile("pushf\n"
"pop %0\n"
: "=rm"(flags)::"memory");
return flags;
}
int interrupts_enabled()
{
return (cpu_flags() & 0x200) == 0x200;
}
void main()
{
/* if (get_pid() != 1) { */
/* printf("Wrong PID!\n"); */
/* exit(1); */
/* } */
if (interrupts_enabled())
printf("INTs enabled :)\n");
else
printf("INTs disabled :(\n");
printf("[~] ");
/* while (1) { */
/* putch(getch()); */
/* } */
//syscall_map(MAP_KEYBOARD, (u32)&test);
/* syscall_halt(); */
while (1) {
//printf("A");
};
}
|