代码搜索:push
找到约 10,000 项符合「push」的源代码
代码结果 10,000
www.eeworm.com/read/123907/14607065
c push.c
#include "head.h"
int push(int s[],int value,int top)
{
if(top == MAX)
{
printf("overflow\n");
return(top);
}
s[top] = value;
return(++top);
}
www.eeworm.com/read/123906/14607085
c push.c
#include "head.h"
JD *push(JD *phead,JD *pnew,JD *ptop)
{
pnew->next = ptop;
phead->next = pnew;
ptop = phead->next;
return(ptop);
}
www.eeworm.com/read/123905/14607103
c push.c
#include "head.h"
JD *push(JD *phead,JD *pnew,JD *ptop)
{
pnew->next = ptop;
phead->next = pnew;
ptop = phead->next;
return(ptop);
}
www.eeworm.com/read/222762/14675213
cpp push.cpp
//Push.cpp
//This program is to Push SqStack
# include
# include
# include
# define STACK_INIT_SIZE 100
# define STACKINCREMENT 10
# define OK 1
# define ERRO
www.eeworm.com/read/222762/14675393
exe push.exe
www.eeworm.com/read/222312/14696389
c push.c
/*prj push*/
/*下料部分的主控程序:
1.通过串口接受目标位置信号及其他控制指令
2.通过外中断0接收来自编码器的步进信号
*/
/*描述:
1.需要飞利浦89p58(32k)
2.11.0592Mhz晶体
3.用于smd型机(qb-s-1)
*/
#include "reg51.h"
#include "stdio.h"
#include "math.h"
www.eeworm.com/read/208626/15241980
bin push.bin
www.eeworm.com/read/208626/15241982
dump push.dump
push.out: file format elf32-littlearm
Disassembly of section .text:
00000000 :
0: ea000006 b 20
4: ea00004e b 144
8: ea00004e b 148
www.eeworm.com/read/208626/15241983
h push.h
.equ PORTA_MUX, 0x09000000
.equ PORTA_DATA, 0x09001600
.equ PORTA_DIR, 0x09001604
.equ PORTB_MUX, 0x09000004
.equ PORTB_DIR, 0x0900160c
.equ PORTB_DATA, 0x09001608
.equ PORT7_MUX, 0x09000020
.e
www.eeworm.com/read/208626/15241984