代码搜索:底层驱动
找到约 10,000 项符合「底层驱动」的源代码
代码结果 10,000
www.eeworm.com/read/252035/12306106
pas globle.pas
unit globle;
interface
var
count:integer;
data:array[0..15]of single;
delay:integer=3000;
dh,dl,dib1,dib2:byte;
do1:byte=0;
do2:byte=0;
//应该是一个byte,根据底层设计
array_channel:array[0..15,1..5]
www.eeworm.com/read/131256/14154053
s page.s
/*
* linux/mm/page.s
*
* (C) 1991 Linus Torvalds
*/
/*
* page.s contains the low-level page-exception code.
* the real work is done in mm.c
*/
/*
* page.s 程序包含底层页异常处理代码。实际的工作在memory.c 中完成。
*/
.globl
www.eeworm.com/read/130981/14164504
s page.s
/*
* linux/mm/page.s
*
* (C) 1991 Linus Torvalds
*/
/*
* page.s contains the low-level page-exception code.
* the real work is done in mm.c
*/
/*
* page.s 程序包含底层页异常处理代码。实际的工作在memory.c 中完成。
*/
.globl
www.eeworm.com/read/228948/14356965
s page.s
/*
* linux/mm/page.s
*
* (C) 1991 Linus Torvalds
*/
/*
* page.s contains the low-level page-exception code.
* the real work is done in mm.c
*/
/*
* page.s 程序包含底层页异常处理代码。实际的工作在memory.c 中完成。
*/
.globl
www.eeworm.com/read/218591/14914393
s page.s
/*
* linux/mm/page.s
*
* (C) 1991 Linus Torvalds
*/
/*
* page.s contains the low-level page-exception code.
* the real work is done in mm.c
*/
/*
* page.s 程序包含底层页异常处理代码。实际的工作在memory.c 中完成。
*/
.globl
www.eeworm.com/read/209081/15227482
s page.s
/*
* linux/mm/page.s
*
* (C) 1991 Linus Torvalds
*/
/*
* page.s contains the low-level page-exception code.
* the real work is done in mm.c
*/
/*
* page.s 程序包含底层页异常处理代码。实际的工作在memory.c 中完成。
*/
.globl
www.eeworm.com/read/11825/234826
s page.s
/*
* linux/mm/page.s
*
* (C) 1991 Linus Torvalds
*/
/*
* page.s contains the low-level page-exception code.
* the real work is done in mm.c
*/
/*
* page.s 程序包含底层页异常处理代码。实际的工作在memory.c 中完成。
*/
.globl
www.eeworm.com/read/17769/758844
vhd logic.vhd
--本例中底层模块的文件名为logic.vhd,其模块名与文件名一致,为logic,代码如下:
LIBRARY ieee;
USE ieee.std_logic_1164.ALL;
ENTITY logic IS
PORT(
a : IN std_logic;
b : IN std_logic;
c : IN std_logic;
www.eeworm.com/read/17970/768814
vhd logic.vhd
--本例中底层模块的文件名为logic.vhd,其模块名与文件名一致,为logic,代码如下:
LIBRARY ieee;
USE ieee.std_logic_1164.ALL;
ENTITY logic IS
PORT(
a : IN std_logic;
b : IN std_logic;
c : IN std_logic;
www.eeworm.com/read/301696/3837291
java booksdao.java
package com.sterning.books.dao.iface;
import java.util.List;
import com.sterning.books.model.Books;
//DAO访问层负责封装底层的数据访问细节,不仅可以使概念清晰,而且可以提高开发效率
public interface BooksDao { //DAO的接口类:BooksDao