Update of /cvsroot/ro-oslib/OSLib/!OsLib/Source/Core/oslib
In directory sc8-pr-cvs1:/tmp/cvs-serv13500/Source/Core/oslib
Modified Files:
OSModule.swi
Log Message:
Added ModulePostInit and ModulePostFinal service calls.
Index: OSModule.swi
===================================================================
RCS file: /cvsroot/ro-oslib/OSLib/!OsLib/Source/Core/oslib/OSModule.swi,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** OSModule.swi 11 Mar 2002 10:05:20 -0000 1.2
--- OSModule.swi 28 Jun 2003 15:55:41 -0000 1.3
***************
*** 309,311 ****
ENTRY (R1 # 0x8C "Syntax error translation",
R2 -> .Int: offset, R3 = .Ref .Data: base, R4 -> .String: command),
! EXIT (R0 -> OS_Error: error, R1! = .Bool: unclaimed))
--- 309,329 ----
ENTRY (R1 # 0x8C "Syntax error translation",
R2 -> .Int: offset, R3 = .Ref .Data: base, R4 -> .String: command),
! EXIT (R0 -> OS_Error: error, R1! = .Bool: unclaimed)),
! Service_ModulePostInit =
! ( NUMBER 0x30,
! ENTRY
! ( R0 -> .Data: module,
! R1 # 0xDA "A module has been succesfully initialised - RISC O S 5+",
! R2 -> .Char: title,
! R3 -> .String: postfix,
! R4 = .Int: bcd_version
! ) ),
! Service_ModulePostFinal =
! ( NUMBER 0x30,
! ENTRY
! ( R0 -> .Data: module,
! R1 # 0xDC "A module has been succesfully finalised RISC O S 5+",
! R2 -> .Char: title,
! R3 -> .String: postfix,
! R4 = .Int: bcd_version
! ) )
|