代码搜索:Step
找到约 10,000 项符合「Step」的源代码
代码结果 10,000
www.eeworm.com/read/282561/9082620
jpg step.jpg
www.eeworm.com/read/380474/9146249
amr step.amr
www.eeworm.com/read/380473/9146448
amr step.amr
www.eeworm.com/read/376075/9333005
c step.c
#define uint unsigned int
#define uchar unsigned char
uchar phase=0;
extern void out(uchar x);
main(){
for(;;){
out(phase=++phase&0x03);
}
}
www.eeworm.com/read/376075/9333026
lst step.lst
C51 COMPILER V7.10 STEP 08/20/2005 15:38:51 PAGE 1
C51 COMPILER V7.10, COMPILATION OF MODULE STEP
OBJECT MODULE PLACED IN st
www.eeworm.com/read/376075/9333032
obj step.obj
www.eeworm.com/read/179705/9341898
c step.c
/* ode-initval/odeiv.c
*
* Copyright (C) 1996, 1997, 1998, 1999, 2000 Gerard Jungman
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU Gen
www.eeworm.com/read/168861/9891327
c step.c
#define uint unsigned int
#define uchar unsigned char
uchar phase=0;
out (uchar x);
main () {
for(;;) {
out(phase=++phase&0x03);
}
}
www.eeworm.com/read/168861/9891328
asm step.asm
EXTRN CODE(OUT)
EXTRN DATA(STATE)
VAR SEGMENT DATA
STEP SEGMENT CODE
STACK SEGMENT IDATA
RSEG STACK
DS 10H
RSEG VAR
PHASE: DS 1
RSEG STEP
ORG 0000H
LJMP START