Continue to Site

Welcome to EDAboard.com

Welcome to our site! EDAboard.com is an international Electronics Discussion Forum focused on EDA software, circuits, schematics, books, theory, papers, asic, pld, 8051, DSP, Network, RF, Analog Design, PCB, Service Manuals... and a whole lot more! To participate you need to register. Registration is free. Click here to register now.

parallel port in assembly how to

Status
Not open for further replies.

ehsanelahimirza

Full Member level 6
Full Member level 6
Joined
Feb 24, 2006
Messages
334
Helped
28
Reputation
56
Reaction score
7
Trophy points
1,298
Activity points
3,570
hi all

plz tell me how to control parallel port by assembly

8 dat pins are OUT controlled

how other status and control pins would be controled also
 

This is a simple Assembler program to write into a Parallel port. In this case the parallel port Address is 0x378. Check in your PC bios or in windows/system to see if your LPT port (parallel port) address match.

**broken link removed**

There are many Assembler for x86 computers out there. Just search in google.

Regards
 

assume ur port address is 378 hex. then u can write:

mov AH,378
mov AL,-----data u want to send to LPT port ----
out AH,AL
 

what to do if i want to send system time to parallel or serial port

how to show total time 00:00--->12:59 or 23:59

i mean bits representing time

pnly data bits r 8 then how to use control pins and status pins
 

Status
Not open for further replies.

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top