aboutsummaryrefslogtreecommitdiff
path: root/backends/platform/gp2x/gp2x-mem.h
diff options
context:
space:
mode:
authorDavid-John Willis2011-05-26 14:08:04 +0100
committerDavid-John Willis2011-06-11 17:07:08 +0100
commit7878c1ec4933dcedf20ab20e15a671a2209c4838 (patch)
tree1384eaddb4bab5a5ff8631c360d2afb15d042e19 /backends/platform/gp2x/gp2x-mem.h
parentf759ff17046be2ef2bcc0c068d1ae2cfbed3e520 (diff)
downloadscummvm-rg350-7878c1ec4933dcedf20ab20e15a671a2209c4838.tar.gz
scummvm-rg350-7878c1ec4933dcedf20ab20e15a671a2209c4838.tar.bz2
scummvm-rg350-7878c1ec4933dcedf20ab20e15a671a2209c4838.zip
GP2X: Remove remnants of the old GP2X backend.
The GP2X is now folded into the GPH backend (as the GP2X device).
Diffstat (limited to 'backends/platform/gp2x/gp2x-mem.h')
-rw-r--r--backends/platform/gp2x/gp2x-mem.h51
1 files changed, 0 insertions, 51 deletions
diff --git a/backends/platform/gp2x/gp2x-mem.h b/backends/platform/gp2x/gp2x-mem.h
deleted file mode 100644
index b2cd00a587..0000000000
--- a/backends/platform/gp2x/gp2x-mem.h
+++ /dev/null
@@ -1,51 +0,0 @@
-/* ScummVM - Graphic Adventure Engine
- *
- * ScummVM is the legal property of its developers, whose names
- * are too numerous to list here. Please refer to the COPYRIGHT
- * file distributed with this source distribution.
- *
- * This program is free software; you can redistribute it and/or
- * modify it under the terms of the GNU General Public License
- * as published by the Free Software Foundation; either version 2
- * of the License, or (at your option) any later version.
-
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
-
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
- *
- */
-
-/*
- * GP2X: Memory Stuff.
- *
- */
-
-#ifndef GP2X_MEM_H
-#define GP2X_MEM_H
-
-#ifdef __cplusplus
-extern "C" {
-#endif
-
-// Use Squidge's MMU patch rather then myown (his is neater).
-// The effect if not that great but cacheing the upper RAM is no bad thing (tm) ;).
-
-//extern void InitRam (void);
-//extern void CloseRam (void);
-// Set ARM920t clock frequency
-extern void SetClock (unsigned c);
-extern void patchMMU (void);
-extern void unpatchMMU (void);
-
-#define SYS_CLK_FREQ 7372800
-
-#ifdef __cplusplus
- }
-#endif
-
-#endif //GP2X_MEM_H