APPENDIX
60
IB827 User’s Manual
W627HF_BASE = 0x00;
result = 0;
Init_Finish:
return
(result);
}
//=======================================================================
void Unlock_W627HF (void)
{
outportb(W627HF_INDEX_PORT,
W627HF_UNLOCK);
outportb(W627HF_INDEX_PORT,
W627HF_UNLOCK);
}
//=======================================================================
void Lock_W627HF (void)
{
outportb(W627HF_INDEX_PORT,
W627HF_LOCK);
}
//=======================================================================
void Set_W627HF_LD( unsigned char LD)
{
Unlock_W627HF();
outportb(W627HF_INDEX_PORT,
W627HF_REG_LD);
outportb(W627HF_DATA_PORT,
LD);
Lock_W627HF();
}
//=======================================================================
void Set_W627HF_Reg( unsigned char REG, unsigned char DATA)
{
Unlock_W627HF();
outportb(W627HF_INDEX_PORT,
REG);
outportb(W627HF_DATA_PORT,
DATA);
Lock_W627HF();
}
//=======================================================================
unsigned char Get_W627HF_Reg(unsigned char REG)
{
unsigned char Result;
Unlock_W627HF();
outportb(W627HF_INDEX_PORT,
REG);
Result = inportb(W627HF_DATA_PORT);
Lock_W627HF();
return
Result;
}
//=======================================================================
Содержание IB827
Страница 1: ...IB827 Intel Atom 945GSE PICMG 1 0 CPU CARD USER S MANUAL Version 1 0...
Страница 4: ...iv IB827 User s Manual This page is intentionally left blank...
Страница 8: ...INTRODUCTION Board Dimensions 4 IB827 User s Manual...
Страница 9: ...INTRODUCTION IB827 User s Manual 5...
Страница 13: ...INSTALLATIONS Jumper Locations on IB827 IB827 User s Manual 9...
Страница 18: ...INSTALLATIONS 14 IB827 User s Manual This page is intentionally left blank...
Страница 50: ...BIOS SETUP 46 IB827 User s Manual This page is intentionally left blank...