代码搜索:msg
找到约 10,000 项符合「msg」的源代码
代码结果 10,000
www.eeworm.com/read/332232/3401089
lst nui_rom.lst
#ifndef _MESSAGE_H_
#define _MESSAGE_H_
enum
{
OSD_MSG_NULL,
OSD_MSG_HD_OSD2_WARNING,
OSD_MSG_DIALOG_VOLUME,
OSD_MSG_OPEN,
OSD_MSG_LOADING,
OSD_MSG_PLAY,
OSD_MSG_RESUME,
OSD_MSG_FFX,
OSD_M
www.eeworm.com/read/369891/2788444
lst nui_rom.lst
#ifndef _MESSAGE_H_
#define _MESSAGE_H_
enum
{
OSD_MSG_NULL,
OSD_MSG_HD_OSD2_WARNING,
OSD_MSG_DIALOG_VOLUME,
OSD_MSG_OPEN,
OSD_MSG_LOADING,
OSD_MSG_PLAY,
OSD_MSG_RESUME,
OSD_MSG_FFX,
OSD_M
www.eeworm.com/read/216502/4891231
c pcs.c
#
/*
*
* UNIX debugger
*
*/
#include "defs.h"
MSG NOBKPT;
MSG SZBKPT;
MSG EXBKPT;
MSG NOPCS;
MSG BADMOD;
/* breakpoints */
BKPTR bkpthead;
CHAR *lp;
CHAR lastc;
POS corhdr[512];
POS
www.eeworm.com/read/288572/8621606
c alarm.c
/*------------------------------------------------*/
/* Project Name: Multiplexer of MPEG-II */
/* Module Name: Alarm & Status detect */
/*
www.eeworm.com/read/287415/8686970
c tbounce1d.c
/* tbounce1d.c: controlled animation using two threads
* note one thread handles animation
* other thread handles keyboard input
* compile cc tbounce1d.c -lcurses -lpthread -o tbounce1d
*/
#inc
www.eeworm.com/read/380481/9145595
c tbounce1d.c
/* tbounce1d.c: controlled animation using two threads
* note one thread handles animation
* other thread handles keyboard input
* compile cc tbounce1d.c -lcurses -lpthread -o tbounce1d
*/
#inc
www.eeworm.com/read/371578/9548412
asm eg0403.asm
;eg0403.asm
include io32.inc
.data
no_msg byte 'Not Ready!',0
yes_msg byte 'Ready to Go!',0
.code
start:
mov eax,56h ;假设一个数据
test eax,02h ;测试D1位,用10B与其进行逻辑与
jz nom ;D1=0(ZF=1),转移到NOM
www.eeworm.com/read/371578/9548596
asm eg0403a.asm
;eg0403a.asm
include io32.inc
.data
no_msg byte 'Not Ready!',0
yes_msg byte 'Ready to Go!',0
.code
start:
mov eax,58h ; 假设一个数据
test eax,02h ; 测试D1位(使用D1=1,其他位为0的数据)
jnz yesm ; D1=1条件成立,
www.eeworm.com/read/371578/9548768
asm eg0405.asm
;eg0405.asm
include io32.inc
.data
in_msg1 byte 'Enter a number: ',0
in_msg2 byte 'Enter another number: ',0
out_msg1 byte 'Two numbers are equal: ',0
out_msg2 byte 'The less number is: ',0
o
www.eeworm.com/read/371578/9548822
asm eg0405a.asm
;eg0405a.asm
include io32.inc
.data
in_msg1 byte 'Enter a number: ',0
in_msg2 byte 'Enter another number: ',0
out_msg1 byte 'Two numbers are equal: ',0
out_msg2 byte 'The less number is: ',0