代码搜索:printf
找到约 10,000 项符合「printf」的源代码
代码结果 10,000
www.eeworm.com/read/444799/7606401
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/444091/7618137
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/443644/7629626
c printf.c
/*
** The "printf" code that follows dates from the 1980's. It is in
** the public domain. The original comments are included here for
** completeness. They are very out-of-date but might be useful
www.eeworm.com/read/437523/7747268
h printf.h
/****************************************************************************
*
* ALi
* All Rights Reserved. 2003 Copyright (C)
* File: printf.h
*
* Description: This file
www.eeworm.com/read/436521/7768576
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/436196/7775658
c printf.c
#include "type.h"
#include
#ifdef __STDC__
#include
#else
#include
#endif
#include "uart.h"
//#define LIGHTPRINTF
void PRINT(const char * ptr, unsign
www.eeworm.com/read/436196/7775659
h printf.h
#ifndef _PRINTF_P_H_
#define _PRINTF_P_H_
extern void _printf_P (char const *fmt0, ...);
#define printf(format, args...) _printf_P(format , ## args)
#endif
www.eeworm.com/read/435917/7781035
c printf.c
/*
** The "printf" code that follows dates from the 1980's. It is in
** the public domain. The original comments are included here for
** completeness. They are very out-of-date but might be useful
www.eeworm.com/read/435917/7781161
test printf.test
# 2001 September 15
#
# The author disclaims copyright to this source code. In place of
# a legal notice, here is a blessing:
#
# May you do good and not evil.
# May you find forgiveness for yo
www.eeworm.com/read/399014/7900430
pas printf.pas
unit printf;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, ExtCtrls, QuickRpt, QRCtrls;
type
TPrintForm = class(TForm)
Quick