os.hhf
来自「High Level assembly language(HLA)软件」· HHF 代码 · 共 35 行
HHF
35 行
#if( ! @defined( os_hhf ))?os_hhf := true;namespace os; // Note: os.win32, os.linux, os.bsd, and os.mac specify the operating // system in use. This file must be manually edited as appropriate // for use under Windows, Linux, freeBSD, or Mac OSX so that these // constants contain the appropriate values. const linux := @global:true; win32 := @global:false; freeBSD := @global:false; macOS := @global:false; qnx := @global:false; procedure system( cmdLn :string ); @external( "OS_SYSTEM" ); procedure sleep( secs :dword ); @external( "OS_SLEEP" ); procedure mSleep( msecs :dword ); @external( "OS_MSLEEP" ); #macro exitProcess( rtnCode ); mov( rtnCode, ebx ); mov( 1, eax ); int( $80 ); #endmacro end os; #endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?