⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 porttest1.dpr

📁 在Windows NT使用I/O端口,包括装载,开始,卸载驱动程序的函数.
💻 DPR
字号:
program PortTest1;

uses
  Forms,
  PortTestU1 in 'PortTestU1.pas' {fm_Main},
  gwportio in 'gwportio.pas',
  fm_BaseCount1 in 'fm_BaseCount1.pas' {fm_BaseCount},
  GWUtil_1 in 'GWUtil_1.pas',
  fm_IOPort1 in 'fm_IOPort1.pas' {fm_IOPort},
  fm_IOPM1 in 'fm_IOPM1.pas' {fm_IOPM},
  gwiopm in 'gwiopm.pas',
  fm_About in 'fm_About.pas' {AboutBox},
  fm_PCSpkr1 in 'fm_PCSpkr1.pas' {fm_PCSpkr},
  fm_VSync1 in 'fm_VSync1.pas' {fm_VSync};

{$R *.RES}

begin
  Application.Initialize;
  Application.CreateForm(Tfm_Main, fm_Main);
  Application.CreateForm(Tfm_BaseCount, fm_BaseCount);
  Application.CreateForm(Tfm_IOPort, fm_IOPort);
  Application.CreateForm(Tfm_IOPM, fm_IOPM);
  Application.CreateForm(TAboutBox, AboutBox);
  Application.CreateForm(Tfm_PCSpkr, fm_PCSpkr);
  Application.CreateForm(Tfm_VSync, fm_VSync);
  Application.Run;
end.

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -