代码搜索结果
找到约 15,197 项符合
Ethernet 的代码
arp.h
#ifndef _ARP_H
#define _ARP_H
#include "types.h"
#include "ethernet.h"
#define ETHERTYPE_ARP 0x0608 /* Address resolution protocol */
#define ARPHRD_ETHER 1 /* ethernet hardware for
ethernet.h
/*********************************************************************************************
* File: ETHERNET.H
* Author: embest
* Desc: Ethernet control define and RTL8019as register descriptio
ethernet.c
#include "..\inc\44b.h"
#include "..\inc\44blib.h"
#include "..\inc\def.h"
#include "..\inc\option.h"
#include "..\inc\ethernet.h"
short read ( short offset );
void write( short offs
myprj_uv2.bak
### uVision2 Project, (C) Keil Software
### Do not modify !
Target (Target 1), 0x0000 // Tools: 'MCS-51'
Group (Source Group 1)
File 1,1,
File 1,1,
myprj.lnp
"ethernet.obj",
"ip.obj",
"main.obj",
"24c02.obj",
"Udp.obj"
TO "myprj"
IXREF
RAMSIZE(256)
ethernet.lst
C51 COMPILER V6.21 ETHERNET 03/08/2002 13:07:30 PAGE 1
C51 COMPILER V6.21, COMPILATION OF MODULE ETHERNET
OBJECT MODULE PLACED I
ethernet.h
#ifndef BYTE
#define BYTE unsigned char
#endif
#ifndef WORD
#define WORD unsigned int
#endif
#ifndef LWORD
#define LWORD unsigned long
#endif
#define MACLEN 6 // Ehternet (M
myprj.uv2
### uVision2 Project, (C) Keil Software
### Do not modify !
Target (Target 1), 0x0000 // Tools: 'MCS-51'
Group (Source Group 1)
File 1,1, 0x0
File 1,1,
eth.h
#ifndef __ETH_H
#define __ETH_H
/*
* IEEE 802.3 Ethernet magic constants. The frame sizes omit the preamble
* and FCS/CRC (frame check sequence).
*/
#define ETH_ALEN 6 /* Octets in one etherne
arp.h
#ifndef __ARP_H
#define __ARP_H
#include "eth.h"
/* ARP protocol HARDWARE identifiers. */
#define ARPHRD_NETROM 0 /* from KA9Q: NET/ROM pseudo */
#define ARPHRD_ETHER 1 /* Ethernet 10Mbps */
#de