599f30f93d
* Restructured the vm support code to align with the changes done to other archs. * Not completely finished, but the kernel loads and panics. I had this sitting on the disk anyway. * Only support 040 for now, 030 will need to be added back. * This commit is dedicated to Jack Tramiel who passed away away last sunday: http://www.forbes.com/sites/davidthier/2012/04/09/computer-legend-and-gaming-pioneer-jack-tramiel-dies-at-age-83/
18 lines
369 B
C
18 lines
369 B
C
/*
|
|
* 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
|
|
|
|
#include <vm/VMTranslationMap.h>
|
|
|
|
/* 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 */
|