PDX-057T
DM&P Vortex86DX
Panel PC with 5.7” VGA TFT LCD
24
#include "stdafx.h"
unsigned char inportb(short addr)
{
unsigned char cValue;
_asm
{
mov dx, addr
in ax, dx
mov cValue, al
}
return cValue;
}
void outpourtb(int addr, unsigned char val)
{
__asm
{
push edx
mov edx, DWORD PTR addr
mov al, BYTE PTR val
out dx, al
pop edx
}
}
Summary of Contents for PDX-057T-D5A-512
Page 5: ...v This page is blank...
Page 12: ...PDX 057T DM P Vortex86DX Panel PC with 5 7 VGA TFT LCD 7 1 4 Product Dimension...
Page 23: ...PDX 057T DM P Vortex86DX Panel PC with 5 7 VGA TFT LCD 18 2 6 System Mapping...
Page 24: ...PDX 057T DM P Vortex86DX Panel PC with 5 7 VGA TFT LCD 19...
Page 25: ...PDX 057T DM P Vortex86DX Panel PC with 5 7 VGA TFT LCD 20...