ArmSystem.py (6757:d86d3d6e5326) ArmSystem.py (7580:6f77f379a594)
1# Copyright (c) 2009 ARM Limited
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

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

27# Authors: Ali Saidi
28
29from m5.params import *
30
31from System import System
32
33class ArmSystem(System):
34 type = 'ArmSystem'
1# Copyright (c) 2009 ARM Limited
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

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

27# Authors: Ali Saidi
28
29from m5.params import *
30
31from System import System
32
33class ArmSystem(System):
34 type = 'ArmSystem'
35 load_addr_mask = 0xffffffff
35
36