Hi,
I am a beginner, but I have a problem:
I want to send to parallel port a byte using nasm program, in linux, that:
segment .text
BITS 16
global _start
_start:
mov al,0ffh
mov dx,378h
out dx,al
nop
jmp _start
My program run, but To parallel port is same state
(040h).
Please, help me!
Or, can I work whith BIOS interrupts? (Better for me, but, how to do?) How can I use LRMI, how can I have LRMI, and where?