Deleted Added
sdiff udiff text old ( 4486:aaeb03a8a6e1 ) new ( 7580:6f77f379a594 )
full compact
1# Copyright (c) 2007 The Regents of The University of Michigan
2# All rights reserved.
3#
4# Redistribution and use in source and binary forms, with or without
5# modification, are permitted provided that the following conditions are
6# met: redistributions of source code must retain the above copyright
7# notice, this list of conditions and the following disclaimer;
8# redistributions in binary form must reproduce the above copyright

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

30from System import System
31
32class AlphaSystem(System):
33 type = 'AlphaSystem'
34 console = Param.String("file that contains the console code")
35 pal = Param.String("file that contains palcode")
36 system_type = Param.UInt64("Type of system we are emulating")
37 system_rev = Param.UInt64("Revision of system we are emulating")
38
39class LinuxAlphaSystem(AlphaSystem):
40 type = 'LinuxAlphaSystem'
41 system_type = 34
42 system_rev = 1 << 10
43
44class FreebsdAlphaSystem(AlphaSystem):
45 type = 'FreebsdAlphaSystem'
46 system_type = 34
47 system_rev = 1 << 10
48
49class Tru64AlphaSystem(AlphaSystem):
50 type = 'Tru64AlphaSystem'
51 system_type = 12
52 system_rev = 2<<1