📄 zl1mail.c
字号:
#include<stdlib.h>
#include<stdio.h>
#include<dos.h>
#include <STDIO.H>
#include <DOS.H>
#include <BIOS.H>
#include <TIME.H>
#include <CONIO.H>
#include <string.h>
#define PORT_ENABLE 0x119B
void main(int argc,int *argv[])
{
char temp=0;
if (! stricmp(argv[1],"e"))
{
//printf("d:%s",argv[1]);
temp = inportb(PORT_ENABLE);
temp = (temp | 0x08);
outportb(PORT_ENABLE,temp);
delay(10);
exit(0);
}
if (! stricmp(argv[1],"d"))
{
temp = inportb(PORT_ENABLE);
temp = (temp & 0xF7);
outportb(PORT_ENABLE,temp);
delay(10);
exit(0);
}
//printf("d:%s",argv[2]);
exit(1);
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -