代码搜索:微内核
找到约 4,827 项符合「微内核」的源代码
代码结果 4,827
www.eeworm.com/read/341202/12102887
c main.c
#define uchar unsigned char //定义一下方便使用
#define uint unsigned int
#define ulong unsigned long
#include //包括一个52标准内核的头文件
sbit P10 = P1^0; //要控制的LED灯
sbit K1= P3^2; //按键K1,开灯用
www.eeworm.com/read/341202/12102934
c main.c
#define uchar unsigned char //定义一下方便使用
#define uint unsigned int
#define ulong unsigned long
#include //包括一个52标准内核的头文件
sbit P10 = P1^0; //要控制的LED灯
sbit K1= P3^2; //按键K1
uch
www.eeworm.com/read/341202/12102984
c main.c
#define uchar unsigned char //定义一下方便使用
#define uint unsigned int
#define ulong unsigned long
#include //包括一个52标准内核的头文件
sbit P10 = P1^0; //头文件中没有定义的IO就要自己来定义了
char code dx516[3]
www.eeworm.com/read/341202/12103151
c main.c
#define uchar unsigned char //定义一下方便使用
#define uint unsigned int
#define ulong unsigned long
#include //包括一个52标准内核的头文件
sbit P10 = P1^0; //要控制的LED灯
sbit K1= P3^2; //按键K1
c
www.eeworm.com/read/341202/12103199
c main.c
#define uchar unsigned char //定义一下方便使用
#define uint unsigned int
#define ulong unsigned long
#include //包括一个52标准内核的头文件
sbit P10 = P1^0; //头文件中没有定义的IO就要自己来定义了
char code dx516[3]
www.eeworm.com/read/341202/12103240
c main.c
#define uchar unsigned char //定义一下方便使用
#define uint unsigned int
#define ulong unsigned long
#include //包括一个52标准内核的头文件
char code dx516[3] _at_ 0x003b;//这是为了仿真设置的
sbit P10=P1
www.eeworm.com/read/341202/12103628
c main.c
#define uchar unsigned char //定义一下方便使用
#define uint unsigned int
#define ulong unsigned long
#include //包括一个52标准内核的头文件
char code dx516[3] _at_ 0x003b;//这是为了仿真设置的
sbit P10=P1^
www.eeworm.com/read/250201/12425078
dsk commtsr.dsk
[Closed Files]
File_0=SourceModule,'F:\Book\第九章监视串口的Windows内核编程\截取串口\Unit1.pas',0,1,1,12,4,1,0
File_1=SourceModule,'H:\WIN\DELPHI\comm\载取\old不完全\UnitDllMain.pas',0,1,7,46,15,0,0
File_2=SourceModule
www.eeworm.com/read/131256/14154136
h system.h
//// 切换到用户模式运行。
// 该函数利用iret 指令实现从内核模式切换到用户模式(初始任务0)。
#define move_to_user_mode() \
__asm__ ( "movl %%esp,%%eax\n\t" \ // 保存堆栈指针esp 到eax 寄存器中。
"pushl $0x17\n\t" \ // 首先将堆栈段选择符(SS)入栈。
"pushl %%eax\n
www.eeworm.com/read/130981/14164525
h times.h
#ifndef _TIMES_H
#define _TIMES_H
#include // 类型头文件。定义了基本的系统数据类型。
struct tms {
time_t tms_utime; // 用户使用的CPU 时间。
time_t tms_stime; // 系统(内核)CPU 时间。
time_t tms_cutime; // 已终止的子进程使用的用户CP