2007-10-22 03:42:09 +04:00
|
|
|
/*
|
|
|
|
* Copyright 2004, Axel Dörfler, axeld@pinc-software.de. All rights reserved.
|
|
|
|
* Distributed under the terms of the MIT License.
|
|
|
|
*/
|
|
|
|
#ifndef ARCH_M68K_VM_H
|
|
|
|
#define ARCH_M68K_VM_H
|
|
|
|
|
2010-10-30 05:33:50 +04:00
|
|
|
#include <vm/VMTranslationMap.h>
|
2008-01-20 20:21:01 +03:00
|
|
|
|
2007-10-22 03:42:09 +04:00
|
|
|
/* This many pages will be read/written on I/O if possible */
|
|
|
|
|
|
|
|
#define NUM_IO_PAGES 4
|
|
|
|
/* 16 kB */
|
|
|
|
|
|
|
|
#define PAGE_SHIFT 12
|
|
|
|
|
|
|
|
#endif /* ARCH_M68K_VM_H */
|