mm_disk.hh (11168:f98eb2da15a4) mm_disk.hh (11264:dc389d2d2f79)
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;

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

31/** @file
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
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;

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

31/** @file
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 "dev/disk_image.hh"
40#include "dev/io_device.hh"
39#include "dev/io_device.hh"
40#include "dev/storage/disk_image.hh"
41#include "params/MmDisk.hh"
42
43class MmDisk : public BasicPioDevice
44{
45 private:
46 DiskImage *image;
47 off_t curSector;
48 bool dirty;

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

--- 20 unchanged lines hidden ---