代码搜索结果
找到约 10,000 项符合
C 的代码
hardware.inc
//========================================================================================
// Progarm: The file be included by modules
// Arranged by: Andy Hsu
// Date: 2000/06/23: first version
t_add_half.v
module Add_half (sum, c_out, a, b);
output sum, c_out;
input a, b;
wire c_bar;
xor M1 (sum, a, b);
nand M2 (c_bar, a, b);
not M3 (c_out, c_bar);
endmodule
module t_Add
system.c
#include "system.h"
#include "AT91SAM7S64.h"
AT91PS_PMC pPMC = AT91C_BASE_PMC;
void Delay_s (unsigned long a) { while (--a!=0); }
//MAIN POINTER
AT91PS_PIO p_pPio = AT91C_BASE_PIOA;
uart.lst
C51 COMPILER V6.12 UART 06/28/2005 22:56:53 PAGE 1
C51 COMPILER V6.12, COMPILATION OF MODULE UART
OBJECT MODULE PLACED IN UA
note.java
//: polymorphism/music/Note.java
// Notes to play on musical instruments.
package polymorphism.music;
public enum Note {
MIDDLE_C, C_SHARP, B_FLAT; // Etc.
} ///:~
spce061.inc
//========================================================================================
// Progarm: The file be included by modules
// Arranged by: Lanin Lin
// Date: 2002/11/20: first version
spce.inc
//========================================================================================
// Program: Standard function definition V1.0
// Arranged by: Arthur Shieh
// Platform: SPCE500A/060A/061
cc_build_debug.log
-------------------------- viterbi_C54.pjt - Debug --------------------------
[Viterbi_t.c] "c:\ti\c5400\cgtools\bin\cl500" -g -q -fr"D:/Documents and Settings/wlan_c54x/viterbi_C54/Debug" -i"d:/vi
2440loader-8bit.err
"2440loader-8bit.c", line 82: Warning: C2207W: inventing 'extern int Uart_Init();'
"2440loader-8bit.c", line 83: Warning: C2207W: inventing 'extern int Uart_Select();'
"2440loader-8bit.c", line 95:
diag.h
/* diag.h - Diagnostic test header */
/* Copyright 2002 TAEBAEK Soft Corp. */
/*
modification history
--------------------
01a,08feb02,jmLee created.
*/
#ifndef INCdiagh
#define INCd