mm_disk.hh (4762:c94e103c83ad) mm_disk.hh (8229:78bf55f23338)
1/*
2 * Copyright (c) 2006 The Regents of The University of Michigan
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are
7 * met: redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer;

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

32 * This device acts as a disk similar to the memory mapped disk device
33 * in legion. Any access is translated to an offset in the disk image.
34 */
35
36#ifndef __DEV_SPARC_MM_DISK_HH__
37#define __DEV_SPARC_MM_DISK_HH__
38
39#include "base/range.hh"
1/*
2 * Copyright (c) 2006 The Regents of The University of Michigan
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are
7 * met: redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer;

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

32 * This device acts as a disk similar to the memory mapped disk device
33 * in legion. Any access is translated to an offset in the disk image.
34 */
35
36#ifndef __DEV_SPARC_MM_DISK_HH__
37#define __DEV_SPARC_MM_DISK_HH__
38
39#include "base/range.hh"
40#include "dev/io_device.hh"
41#include "dev/disk_image.hh"
40#include "dev/disk_image.hh"
41#include "dev/io_device.hh"
42#include "params/MmDisk.hh"
43
44class MmDisk : public BasicPioDevice
45{
46 private:
47 DiskImage *image;
48 off_t curSector;
49 bool dirty;

--- 20 unchanged lines hidden ---
42#include "params/MmDisk.hh"
43
44class MmDisk : public BasicPioDevice
45{
46 private:
47 DiskImage *image;
48 off_t curSector;
49 bool dirty;

--- 20 unchanged lines hidden ---