aboutsummaryrefslogtreecommitdiff
path: root/interrupts.c
diff options
context:
space:
mode:
Diffstat (limited to 'interrupts.c')
-rw-r--r--interrupts.c11
1 files changed, 1 insertions, 10 deletions
diff --git a/interrupts.c b/interrupts.c
index 9beee0a..bf7ed02 100644
--- a/interrupts.c
+++ b/interrupts.c
@@ -18,7 +18,7 @@ void undefined_instruction_vector(void)
{
error("Undefined instruction occured");
}
-_Bool flag = 0;
+
uint32_t supervisor_call_handler(uint32_t regs[14])
{
switch(regs[0]) {
@@ -38,15 +38,6 @@ uint32_t supervisor_call_handler(uint32_t regs[14])
case UART_WRITE:
error("UART_WRITE not implemented!!!!!");
break;
- case 17:
- {
- flag = 1;
- /* while (1) */
- /* { */
- /* printbin(*(uint32_t volatile*) PL011_UART_MIS); puts(""); */
- /* } */
- break;
- }
default:
// perhaps we should kill the process now?
error("unknown supervisor call type!!!!!");