i have a PCI Card that seats in
irq 10
memory range 1001000-1001fff
with VB
how do i make interrupt to irq 10 ?
like int 10h in assembler
can i use assembler commands
like mov ax,5
int 10h
in VB ?
how do i get any signals from that card ?
:confused:
Printable View
i have a PCI Card that seats in
irq 10
memory range 1001000-1001fff
with VB
how do i make interrupt to irq 10 ?
like int 10h in assembler
can i use assembler commands
like mov ax,5
int 10h
in VB ?
how do i get any signals from that card ?
:confused:
You should not do things like that at all with VB.net.
Everything should go through the framework if at all possible, otherwise the application will not port.
Is this a general VB6 question? You can write low level stuff in assembler or C, and call it from VB, but this is probably not the right forum to find that information.
What you probably need are the manufacturer's drivers for the card.
Drivers are not usually written in VB, so I don't see an easy answer if you can't get them.