SConscript (6045:214461cb8abe) SConscript (8335:9228e00459d4)
1# -*- mode:python -*-
2
3# Copyright (c) 2006 The Regents of The University of Michigan
4# All rights reserved.
5#
6# Redistribution and use in source and binary forms, with or without
7# modification, are permitted provided that the following conditions are
8# met: redistributions of source code must retain the above copyright

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

34 SimObject('Pc.py')
35 Source('pc.cc')
36
37 SimObject('SouthBridge.py')
38 Source('south_bridge.cc')
39
40 SimObject('Cmos.py')
41 Source('cmos.cc')
1# -*- mode:python -*-
2
3# Copyright (c) 2006 The Regents of The University of Michigan
4# All rights reserved.
5#
6# Redistribution and use in source and binary forms, with or without
7# modification, are permitted provided that the following conditions are
8# met: redistributions of source code must retain the above copyright

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

34 SimObject('Pc.py')
35 Source('pc.cc')
36
37 SimObject('SouthBridge.py')
38 Source('south_bridge.cc')
39
40 SimObject('Cmos.py')
41 Source('cmos.cc')
42 TraceFlag('CMOS', 'Accesses to CMOS devices')
42 DebugFlag('CMOS', 'Accesses to CMOS devices')
43
44 SimObject('I8259.py')
45 Source('i8259.cc')
43
44 SimObject('I8259.py')
45 Source('i8259.cc')
46 TraceFlag('I8259', 'Accesses to the I8259 PIC devices')
46 DebugFlag('I8259', 'Accesses to the I8259 PIC devices')
47
48 SimObject('I8254.py')
49 Source('i8254.cc')
47
48 SimObject('I8254.py')
49 Source('i8254.cc')
50 TraceFlag('I8254', 'Interrupts from the I8254 timer');
50 DebugFlag('I8254', 'Interrupts from the I8254 timer');
51
52 SimObject('I8237.py')
53 Source('i8237.cc')
51
52 SimObject('I8237.py')
53 Source('i8237.cc')
54 TraceFlag('I8237', 'The I8237 dma controller');
54 DebugFlag('I8237', 'The I8237 dma controller');
55
56 SimObject('I8042.py')
57 Source('i8042.cc')
55
56 SimObject('I8042.py')
57 Source('i8042.cc')
58 TraceFlag('I8042', 'The I8042 keyboard controller');
58 DebugFlag('I8042', 'The I8042 keyboard controller');
59
60 SimObject('PcSpeaker.py')
61 Source('speaker.cc')
59
60 SimObject('PcSpeaker.py')
61 Source('speaker.cc')
62 TraceFlag('PcSpeaker')
62 DebugFlag('PcSpeaker')
63
64 SimObject('I82094AA.py')
65 Source('i82094aa.cc')
63
64 SimObject('I82094AA.py')
65 Source('i82094aa.cc')
66 TraceFlag('I82094AA')
66 DebugFlag('I82094AA')
67
68 SimObject('X86IntPin.py')
69 Source('intdev.cc')
67
68 SimObject('X86IntPin.py')
69 Source('intdev.cc')
70 TraceFlag('IntDev')
70 DebugFlag('IntDev')