X86System.py (5132:ad5e94876bfc) X86System.py (5299:e61b9f2a9732)
1# Copyright (c) 2007 The Hewlett-Packard Development Company
2# All rights reserved.
3#
4# Redistribution and use of this software in source and binary forms,
5# with or without modification, are permitted provided that the
6# following conditions are met:
7#
8# The software must be used only for Non-Commercial Use which means any

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

53#
54# Authors: Gabe Black
55
56from m5.params import *
57from System import System
58
59class X86System(System):
60 type = 'X86System'
1# Copyright (c) 2007 The Hewlett-Packard Development Company
2# All rights reserved.
3#
4# Redistribution and use of this software in source and binary forms,
5# with or without modification, are permitted provided that the
6# following conditions are met:
7#
8# The software must be used only for Non-Commercial Use which means any

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

53#
54# Authors: Gabe Black
55
56from m5.params import *
57from System import System
58
59class X86System(System):
60 type = 'X86System'
61
62class LinuxX86System(X86System):
63 type = 'LinuxX86System'
64 command_line = Param.String("", "the kernel command line")