console.c (8021:abc215a139a8) console.c (8022:15bece33379b)
1/*
2 * Copyright (c) 2003, 2004
3 * The Regents of The University of Michigan
4 * All Rights Reserved
5 *
6 * This code is part of the M5 simulator, developed by Nathan Binkert,
7 * Erik Hallnor, Steve Raasch, and Steve Reinhardt, with contributions
8 * from Ron Dreslinski, Dave Greene, Lisa Hsu, Ali Saidi, and Andrew

--- 607 unchanged lines hidden (view full) ---

616 rpb_ctb = (struct rpb_ctb *) nextPtr;
617 ctb_tt = (struct ctb_tt*) rpb_ctb;
618
619 rpb->rpb_ctb_off = ((ulong)rpb_ctb) - (ulong)rpb;
620 rpb->rpb_ctb_size = sizeof(struct rpb_ctb);
621
622 bzero((char *)rpb_ctb, sizeof(struct ctb_tt));
623
1/*
2 * Copyright (c) 2003, 2004
3 * The Regents of The University of Michigan
4 * All Rights Reserved
5 *
6 * This code is part of the M5 simulator, developed by Nathan Binkert,
7 * Erik Hallnor, Steve Raasch, and Steve Reinhardt, with contributions
8 * from Ron Dreslinski, Dave Greene, Lisa Hsu, Ali Saidi, and Andrew

--- 607 unchanged lines hidden (view full) ---

616 rpb_ctb = (struct rpb_ctb *) nextPtr;
617 ctb_tt = (struct ctb_tt*) rpb_ctb;
618
619 rpb->rpb_ctb_off = ((ulong)rpb_ctb) - (ulong)rpb;
620 rpb->rpb_ctb_size = sizeof(struct rpb_ctb);
621
622 bzero((char *)rpb_ctb, sizeof(struct ctb_tt));
623
624 rpb_ctb->rpb_type = CONS_REM;
624 rpb_ctb->rpb_type = CONS_DZ;
625 rpb_ctb->rpb_length = sizeof(ctb_tt) - sizeof(rpb_ctb);
626
627 /*
628 * uart initizliation
629 */
630 ctb_tt->ctb_tintr_vec = 0x6c0; /* matches tlaser pal code */
631 ctb_tt->ctb_rintr_vec = 0x680; /* matches tlaser pal code */
632 ctb_tt->ctb_term_type = CTB_GRAPHICS;

--- 469 unchanged lines hidden ---
625 rpb_ctb->rpb_length = sizeof(ctb_tt) - sizeof(rpb_ctb);
626
627 /*
628 * uart initizliation
629 */
630 ctb_tt->ctb_tintr_vec = 0x6c0; /* matches tlaser pal code */
631 ctb_tt->ctb_rintr_vec = 0x680; /* matches tlaser pal code */
632 ctb_tt->ctb_term_type = CTB_GRAPHICS;

--- 469 unchanged lines hidden ---