# HG changeset patch # User Paul Boddie # Date 1456786780 -3600 # Node ID 1f04193618f017ab72d7b67676d8eee299a23096 # Parent e4db1ec10bca955b4603166eaf54d129a72c7ac4 Switched to using stacks accessible via the same virtual address region. diff -r e4db1ec10bca -r 1f04193618f0 stage2/irq.c --- a/stage2/irq.c Mon Feb 29 23:57:51 2016 +0100 +++ b/stage2/irq.c Mon Feb 29 23:59:40 2016 +0100 @@ -126,8 +126,8 @@ physical memory, but at the same address in virtual memory. */ + virtual = stack_start; physical = stack_start - stack_size * task; - virtual = physical; init_page_table(page_table_start, virtual - pagesize * 2, physical - pagesize * 2, pagesize, 0x1e, task);