mirror of
https://review.haiku-os.org/haiku
synced 2025-01-31 18:56:49 +01:00
dc3b3e172d
Change-Id: Ica0efdeabaa73be0030e0522352c0c3bf311a9ad Reviewed-on: https://review.haiku-os.org/c/haiku/+/6913 Tested-by: Commit checker robot <no-reply+buildbot@haiku-os.org> Reviewed-by: waddlesplash <waddlesplash@gmail.com>
16 lines
335 B
C
16 lines
335 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
|
|
|
|
/* 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 */
|