Browse Source

--- Merging r19773 into '.':
U rtl/gba/system.pp
U rtl/gba/sysutils.pp

# revisions: 19773
------------------------------------------------------------------------
r19773 | Legolas | 2011-12-07 18:27:52 +0100 (Wed, 07 Dec 2011) | 2 lines
Changed paths:
M /trunk/rtl/gba/system.pp
M /trunk/rtl/gba/sysutils.pp

* Fixed GBA rtl compilation
* Some minor cleanup
------------------------------------------------------------------------

git-svn-id: branches/fixes_2_6@19775 -

marco 13 years ago
parent
commit
d355564d7b
2 changed files with 1 additions and 5 deletions
  1. 0 4
      rtl/gba/system.pp
  2. 1 1
      rtl/gba/sysutils.pp

+ 0 - 4
rtl/gba/system.pp

@@ -67,7 +67,6 @@ var
   argc: LongInt = 0;
   argc: LongInt = 0;
   argv: PPChar;
   argv: PPChar;
   envp: PPChar;
   envp: PPChar;
-//  errno: integer;
   fake_heap_end: ^byte; cvar; external;
   fake_heap_end: ^byte; cvar; external;
 
 
 
 
@@ -186,9 +185,6 @@ begin
   StackBottom := StackTop - StackLength;
   StackBottom := StackTop - StackLength;
 { OS specific startup }
 { OS specific startup }
 
 
-{ Set up signals handlers }
-//  fpc_cpucodeinit;
-
 { Setup heap }
 { Setup heap }
   InitHeap;
   InitHeap;
   SysInitExceptions;
   SysInitExceptions;

+ 1 - 1
rtl/gba/sysutils.pp

@@ -229,7 +229,7 @@ end;
                               Misc Functions
                               Misc Functions
 ****************************************************************************}
 ****************************************************************************}
 
 
-procedure Beep;
+procedure sysBeep;
 begin
 begin
 end;
 end;