SConscript (5763:4b44fe535d05) | SConscript (5794:c85b8323f3d8) |
---|---|
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 --- 19 unchanged lines hidden (view full) --- 28# 29# Authors: Steve Reinhardt 30# Gabe Black 31 32Import('*') 33 34if env['FULL_SYSTEM']: 35 SimObject('BadDevice.py') | 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 --- 19 unchanged lines hidden (view full) --- 28# 29# Authors: Steve Reinhardt 30# Gabe Black 31 32Import('*') 33 34if env['FULL_SYSTEM']: 35 SimObject('BadDevice.py') |
36 SimObject('CopyEngine.py') |
|
36 SimObject('Device.py') 37 SimObject('DiskImage.py') 38 SimObject('Ethernet.py') 39 SimObject('Ide.py') 40 SimObject('Pci.py') 41 SimObject('Platform.py') 42 SimObject('SimpleDisk.py') 43 SimObject('Terminal.py') 44 SimObject('Uart.py') 45 46 Source('baddev.cc') | 37 SimObject('Device.py') 38 SimObject('DiskImage.py') 39 SimObject('Ethernet.py') 40 SimObject('Ide.py') 41 SimObject('Pci.py') 42 SimObject('Platform.py') 43 SimObject('SimpleDisk.py') 44 SimObject('Terminal.py') 45 SimObject('Uart.py') 46 47 Source('baddev.cc') |
48 Source('copy_engine.cc') |
|
47 Source('disk_image.cc') 48 Source('etherbus.cc') 49 Source('etherdevice.cc') 50 Source('etherdump.cc') 51 Source('etherint.cc') 52 Source('etherlink.cc') 53 Source('etherpkt.cc') 54 Source('ethertap.cc') --- 13 unchanged lines hidden (view full) --- 68 Source('sinic.cc') 69 Source('terminal.cc') 70 Source('uart.cc') 71 Source('uart8250.cc') 72 73 TraceFlag('DiskImageRead') 74 TraceFlag('DiskImageWrite') 75 TraceFlag('DMA') | 49 Source('disk_image.cc') 50 Source('etherbus.cc') 51 Source('etherdevice.cc') 52 Source('etherdump.cc') 53 Source('etherint.cc') 54 Source('etherlink.cc') 55 Source('etherpkt.cc') 56 Source('ethertap.cc') --- 13 unchanged lines hidden (view full) --- 70 Source('sinic.cc') 71 Source('terminal.cc') 72 Source('uart.cc') 73 Source('uart8250.cc') 74 75 TraceFlag('DiskImageRead') 76 TraceFlag('DiskImageWrite') 77 TraceFlag('DMA') |
78 TraceFlag('DMACopyEngine') |
|
76 TraceFlag('Ethernet') 77 TraceFlag('EthernetCksum') 78 TraceFlag('EthernetDMA') 79 TraceFlag('EthernetData') 80 TraceFlag('EthernetDesc') 81 TraceFlag('EthernetEEPROM') 82 TraceFlag('EthernetIntr') 83 TraceFlag('EthernetPIO') --- 22 unchanged lines hidden --- | 79 TraceFlag('Ethernet') 80 TraceFlag('EthernetCksum') 81 TraceFlag('EthernetDMA') 82 TraceFlag('EthernetData') 83 TraceFlag('EthernetDesc') 84 TraceFlag('EthernetEEPROM') 85 TraceFlag('EthernetIntr') 86 TraceFlag('EthernetPIO') --- 22 unchanged lines hidden --- |