⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 code.cache.size.xm

📁 代码优化,有效使用内存,透视优化技术,对比优化方法,如果你在追求代码效率的最大化,该资源你不能不读.
💻 XM
字号:
; CODE_SIZE EQU	?		; // The CODE_SIZE macro is automaticall generated
						; // by batch translator file

; /*--------------------------------------------------------------------------
;  *
;  * 				MACRO GENERATING N NOP machine commands
;  *				-----------------------------------------
;  *
;  *						(the NOP command actually means "no operation"
;  * 						 and takes exactly one byte, i.e. N NOP commands
;  *						 produce N bytes of executable code)
;  *
;  -------------------------------------------------------------------------*/
NOPING MACRO N			; // MACRO START //
	_N = N				; _N := N (getting the argument passed to the macro)
	_A = 0				; _A -- loop counter variable

	WHILE _A NE _N		; while(_A <= _N){
		NOP				; inserting NOPs into the source code
		_A = _A + 1		; _A++;
	ENDM				; }
ENDM					; // MACRO END //

; /*--------------------------------------------------------------------------
;  * 
;  * 		CALLING THE MACRO FOR CREATING A BLOCK WITH THE SIZE EQUAL TO CODE_SIZE KB of NOP commands
;  *		-----------------------------------------------------------
;  *
; --------------------------------------------------------------------------*/
NOPING CODE_SIZE*1024



⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -