![American Megatrends MB950 Скачать руководство пользователя страница 63](http://html.mh-extra.com/html/american-megatrends/mb950/mb950_user-manual_2924800063.webp)
APPENDIX
MB950 User’s Manual
59
Set_F81865_LD(0x07);
//switch to logic device 7
Set_F81865_Reg(0x30, 0x01); //enable timer
bBuf = Get_F81865_Reg(0xF5);
bBuf &= (~0x0F);
bBuf |= 0x52;
Set_F81865_Reg(0xF5, bBuf); //count mode is second
Set_F81865_Reg(0xF6, interval); //set timer
bBuf = Get_F81865_Reg(0xFA);
bBuf |= 0x01;
Set_F81865_Reg(0xFA, bBuf); //enable WDTO output
bBuf = Get_F81865_Reg(0xF5);
bBuf |= 0x20;
Set_F81865_Reg(0xF5, bBuf); //start counting
}
//---------------------------------------------------------------------------
void DisableWDT(void)
{
unsigned char bBuf;
Set_F81865_LD(0x07);
//switch to logic device 7
bBuf = Get_F81865_Reg(0xFA);
bBuf &= ~0x01;
Set_F81865_Reg(0xFA, bBuf); //disable WDTO output
bBuf = Get_F81865_Reg(0xF5);
bBuf &= ~0x20;
bBuf |= 0x40;
Set_F81865_Reg(0xF5, bBuf); //disable WDT
}
//---------------------------------------------------------------------------
//---------------------------------------------------------------------------
//
// THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY
// KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
// IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A PARTICULAR
// PURPOSE.
//
//---------------------------------------------------------------------------
#include "F81865.H"
#include <dos.h>
//---------------------------------------------------------------------------
unsigned int F81865_BASE;
void Unlock_F81865 (void);
void Lock_F81865 (void);
//---------------------------------------------------------------------------
unsigned int Init_F81865(void)
{
unsigned int result;
unsigned char ucDid;
F81865_BASE = 0x4E;
result = F81865_BASE;
ucDid = Get_F81865_Reg(0x20);
if (ucDid == 0x07)
//Fintek 81865
{
goto Init_Finish; }
F81865_BASE = 0x2E;
result = F81865_BASE;
ucDid = Get_F81865_Reg(0x20);
if (ucDid == 0x07)
//Fintek 81865
{
goto Init_Finish; }
F81865_BASE = 0x00;
result = F81865_BASE;
Содержание MB950
Страница 1: ...MB950 Intel Core i3 i5 i7 ATX Motherboard USER S MANUAL Version 1 0A ...
Страница 8: ...INTRODUCTION 4 MB950 User s Manual Board Dimensions ...
Страница 58: ...DRIVER INSTALLATION 54 MB950 User s Manual This page is intentionally left blank ...
Страница 62: ...APPENDIX 58 MB950 User s Manual Set_F81865_Reg 0x2B bBuf Enable WDTO ...
Страница 65: ...APPENDIX MB950 User s Manual 61 ...