代码搜索:Mac 有哪些应用?
找到约 10,000 项符合「Mac 有哪些应用?」的源代码
代码结果 10,000
www.eeworm.com/read/179003/9379871
o mac.o
www.eeworm.com/read/374766/9385300
h mac.h
#ifndef __MAC_H
#define __MAC_H
#define RX_FRAME_SIZE 64
#define TX_FRAME_SIZE 16
struct frame_desc_struct {
unsigned long frame_data_ptr; // [31] Ownership 0=CPU, 1=BDMA
unsigned long reserved;
www.eeworm.com/read/374766/9385327
c mac.c
#include "types.h"
#include "bioscall.h"
#include "eth.h"
#include "board.h"
#include "mac.h"
static struct frame_desc_struct rx_fd[RX_FRAME_SIZE];
static struct frame_desc_struct tx_fd[TX_FRAM
www.eeworm.com/read/374766/9385332
o mac.o
www.eeworm.com/read/374764/9385443
h mac.h
#ifndef __MAC_H
#define __MAC_H
#define RX_FRAME_SIZE 64
#define TX_FRAME_SIZE 16
struct frame_desc_struct {
unsigned long frame_data_ptr; // [31] Ownership 0=CPU, 1=BDMA
unsigned long reserved;
www.eeworm.com/read/374764/9385471
c mac.c
#include "types.h"
#include "bioscall.h"
#include "eth.h"
#include "board.h"
#include "mac.h"
static struct frame_desc_struct rx_fd[RX_FRAME_SIZE];
static struct frame_desc_struct tx_fd[TX_FRAM
www.eeworm.com/read/374764/9385479
o mac.o
www.eeworm.com/read/374228/9415354
v mac.v
module MAC(out,opa,opb,clk,clr);
output[15:0] out;
input[7:0] opa,opb;
input clk,clr;
wire[15:0] sum;
reg[15:0] out;
function[15:0] mult;
input[7:0] opa,opb;
reg[15:0] result;
integer i;
www.eeworm.com/read/177805/9431772