human68k: pre-fetch the version number of the OS during startup. and store it for easy access

This commit is contained in:
Karoly Balogh 2023-12-06 04:30:20 +01:00
parent 34519c67a1
commit 8ceeb8d165
2 changed files with 4 additions and 0 deletions

View File

@ -109,6 +109,7 @@ procedure h68kdos_exit; noreturn; syscall $ff00;
function h68kdos_chgdrv(newdrv: word): longint; syscall $ff0e;
function h68kdos_curdrv: longint; syscall $ff17;
function h68kdos_gettim2: longint; syscall $ff27;
function h68kdos_vernum: longint; syscall $ff30;
function h68kdos_mkdir(name: pchar): longint; syscall $ff39;
function h68kdos_rmdir(name: pchar): longint; syscall $ff3a;
function h68kdos_chdir(name: pchar): longint; syscall $ff3b;

View File

@ -63,6 +63,7 @@ var
argv: PPChar;
envp: PPChar;
human68k_vernum: word;
{$if defined(FPUSOFT)}
@ -282,6 +283,8 @@ end;
begin
human68k_vernum:=word(h68kdos_vernum);
StackLength := CheckInitialStkLen (InitialStkLen);
{ Initialize ExitProc }
ExitProc:=Nil;