Click here to Skip to main content
65,938 articles
CodeProject is changing. Read more.
Articles
(untagged)

Kport Direct Access I/O Ports Under Win NT/2000/XP

0.00/5 (No votes)
6 Apr 2005 1  
Two simple functions for accessing I/O ports, skiping H.A.L.

Sample Image - kport.jpg

Introduction

I wrote this DLL for implementing direct access I/O ports in Windows NT/2K/XP.

Background

For compiling the project, you need VC7.1-2003. For compiling kioport.sys, you need to install the DDK. Kioport is based on PortTalk.sys from the article: "Beyond Logic Port Talk I/O Port Driver", http://www.beyondlogic.org/, and "A DDK's project wizard for VC2003", http://www.codeproject.com/KB/macros/ddkwizard.aspx.

Using the code

  1. Copy kioport.sys to \windows\system32\drivers.
  2. Add kioport.reg to register windows.
  3. Reboot windows for activate service in the register of windows.
  4. Add kport.h in your project and kport.lib.
  5. Put Kport.dll in the same directory as the application.

Using the Kport DLL is so easy. Here is the function definition, and the explanation follows:

// Returns a value from specific ports.
BYTE Inportb(WORD PortNum);
            
// Write a value to specific ports.
void Outportb(WORD PortNum, BYTE byte);
  • PortNum: is the port number; for example: 0x378 (LPT1).
  • BYTE: data to send for a specific PortNum in Ouportb, and data received in Inportb.

How to use the sample dialog

  • Write a number bellow the text 'Write Value( )', and click in the Write button.
  • Click on the Read button.

History

  • First version: April 3, 2005.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here