代码搜索:printf
找到约 10,000 项符合「printf」的源代码
代码结果 10,000
www.eeworm.com/read/339831/12201984
c printf.c
// Implementation of cprintf console output for user environments,
// based on printfmt() and the sys_cputs() system call.
//
// cprintf is a debugging statement, not a generic output statement.
// It
www.eeworm.com/read/339831/12202282
c printf.c
// Simple implementation of cprintf console output for the kernel,
// based on printfmt() and the kernel console's cputchar().
#include
#include
#include
www.eeworm.com/read/253315/12229662
c printf.c
www.eeworm.com/read/253315/12229798
doc printf.doc
www.eeworm.com/read/150339/12297993
c printf.c
www.eeworm.com/read/150339/12298139
doc printf.doc
www.eeworm.com/read/251375/12349252
txt printf.txt
int printf(const char *format,...)
{
int i;
int iCnt = 0;
int iToSend = 0;
static char buf[PRINTF_BUFF_SIZE];
int ret;
UART_TYPE UartOut;
UINT8 *pBuff = (UINT8 *)buf;
UINT8 *pLas
www.eeworm.com/read/250662/12393001
s printf.s
|
| Need to print the three values x, y, and z.
|
movl z,sp@- | Push args on the
movl y,sp@- | stack in reverse
movl x,sp@- | order: format, x,
movl #format,sp@- | y, and z.
jbsr _print
www.eeworm.com/read/234597/14104245
c printf.c
www.eeworm.com/read/234597/14104339