代码搜索:pcode

找到约 332 项符合「pcode」的源代码

代码结果 332
www.eeworm.com/read/460889/7238673

al math.al

.CSEG ;PCODE: $00000000 VOL: 0 ;PCODE: $00000001 VOL: 0 ld r26,y+ ;PCODE: $00000002 VOL: 0 ld r30,y+ ;PCODE: $00000003 VOL: 0 cp r26,r30 ;PCODE: $00000004 VOL: 0 brlt
www.eeworm.com/read/445965/7587128

h stock.h

#ifndef _TDX_STOCK_H_ #define _TDX_STOCK_H_ #include #include #include #include #include
www.eeworm.com/read/198319/7940775

asm testled.asm

.global testLED .section cpu_dir, #alloc .word 't'+'e'+'s'+'t'+'L'+'E'+'D'+'.'+'c'+'g'+'i' .byte 0x10 ;cgi .byte 0 ;reserved .word cgibegin .word cgiend .section cpu_files, #alloc cgibeg
www.eeworm.com/read/198319/7941165

asm shtemp.asm

.section cpu_dir, #alloc .word 's'+'h'+'t'+'e'+'m'+'p'+'.'+'c'+'g'+'i' .byte 0x10 ;cgi .byte 0 ;reserved .word cgibegin .word cgiend .section cpu_files, #alloc cgibegin: ;shtemp.cgi .pcod
www.eeworm.com/read/198319/7941173

asm lcd1.asm

.global lcd1 .section cpu_dir, #alloc .word 'l'+'c'+'d'+'1'+'.'+'c'+'g'+'i' .byte 0x10 ;cgi .byte 0 ;reserved .word cgibegin .word cgiend .section cpu_files, #alloc cgibegin: ;line1.cgi
www.eeworm.com/read/198319/7941183

asm grapht.asm

.global graph_ds1620 .section cpu_dir, #alloc .word 'g'+'r'+'a'+'p'+'h'+'t'+'.'+'c'+'g'+'i' .byte 0x10 ;cgi .byte 0 ;reserved .word cgibegin .word cgiend .section cpu_files, #alloc cgibeg
www.eeworm.com/read/146126/12668789

cpp compress.cpp

// LZW compression #include #include #include "hashChains.h" using namespace std; // constants const DIVISOR = 4099, // hash function DIVISOR MAX_CODES =
www.eeworm.com/read/314499/13565604

asm mpc.asm

;显示游戏主界面的子程序 ;入口参数---------------------主程序中的字母表table ;出口参数---------------------产生主界面,并调用spc产生游戏界面 pcode segment assume cs:pcode mpc proc far mov ah,0 mov al,3 int 10h mov ah,15 int 1
www.eeworm.com/read/406168/11448472

h stock.h

#ifndef _TDX_STOCK_H_ #define _TDX_STOCK_H_ #include #include #include #include #include
www.eeworm.com/read/401452/11557587

txt 设计思想.txt

PL/0语言是Pascal语言的一个子集,这里分析的PL/0的编译程序包括了对PL/0语言源程序进行分析处理、编译生成类<mark>PCODE</mark>代码,并在虚拟机上解释运行生成的类<mark>PCODE</mark>代码的功能。   PL/0语言编译程序采用以语法分析为核心、一遍扫描的编译方法。词法分析和代码生成作为独立的子程序供语法分析程序调用。语法分析的同时,提供了出错报告和出错恢复的功能。在源程序没有错误编译通过的情况下,调用类P ...