mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-10-17 15:47:02 +02:00

* Fixed makefile for cleaning examples * Fixed SimpleBGScroll example compilation git-svn-id: trunk@19871 -
57 lines
2.1 KiB
ObjectPascal
57 lines
2.1 KiB
ObjectPascal
(****************************************************************************
|
|
* __ *
|
|
* ____ ___ ____ __ ______ ___ ____ ____/ / *
|
|
* / __ `__ \/ __ `/ |/ / __ `__ \/ __ \/ __ / *
|
|
* / / / / / / /_/ /> </ / / / / / /_/ / /_/ / *
|
|
* /_/ /_/ /_/\__,_/_/|_/_/ /_/ /_/\____/\__,_/ *
|
|
* *
|
|
* GBA Definitions *
|
|
* *
|
|
* Copyright (c) 2008, Mukunda Johnson (mukunda@maxmod.org) *
|
|
* *
|
|
* Permission to use, copy, modify, and/or distribute this software for any *
|
|
* purpose with or without fee is hereby granted, provided that the above *
|
|
* copyright notice and this permission notice appear in all copies. *
|
|
* *
|
|
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES *
|
|
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF *
|
|
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR *
|
|
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES *
|
|
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN *
|
|
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF *
|
|
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. *
|
|
****************************************************************************)
|
|
unit maxmod;
|
|
|
|
{$mode objfpc}
|
|
|
|
{$J+}
|
|
{$INLINE ON}
|
|
{$MACRO ON}
|
|
{$PACKRECORDS C}
|
|
|
|
interface
|
|
|
|
uses
|
|
ctypes, gba;
|
|
|
|
{$linklib gba}
|
|
{$linklib mm}
|
|
|
|
{$linklib c}
|
|
{$linklib gcc}
|
|
{$linklib sysbase}
|
|
|
|
{$define NDS_INTERFACE}
|
|
{$include inc/mm_types.inc}
|
|
{$include inc/maxmod.inc}
|
|
{$undef NDS_INTERFACE}
|
|
|
|
implementation
|
|
|
|
{$define NDS_IMPLEMENTATION}
|
|
{$include inc/maxmod.inc}
|
|
{$undef NDS_IMPLEMENTATION}
|
|
|
|
end.
|