⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 oemboot.c

📁 WinCE5.0BSP for Renesas SH7770
💻 C
字号:
//
//  Copyright(C) Renesas Technology Corp. 1998-2005. All rights reserved.
//
//  Ethernet Boot Loader for ITS-DS7
//
//  FILE      : oemboot.c
//  CREATED   : 2002.04.25
//  MODIFIED  : 2005.11.14
//  AUTHOR    : Renesas Technology Corp.
//  HARDWARE  : RENESAS ITS-DS7
//  HISTORY   : 
//              2003.06.20
//              - Created release code.
//                (based on EBOOT for ITS-DS4 Ver.1.2.0 for WCE4.2)
//              2004.04.06
//              - Modified Implement OEMGetRealTime and OEMSetRealTime.
//              2004.04.09
//              - Modified check value of OEMSetRealTime.
//              2005.08.01
//              - Changed Boot Loader Model(used BLCOMMON library).
//              2005.11.14
//              - Changed debugserial routine of oal to debug serial common routines.
//
/*++
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.
Copyright (c) 1995, 1996, 1997  Microsoft Corporation

Module Name:  

Abstract:  
   oemboot.c - OEM specific bootloader routines
   
Functions:


Notes: 

--*/
#include <windows.h>
#include <nkintr.h>
#include <memory.h>
#include "rev.h"

#include "shx.h"
#include "sh7770.h"
#include "platform.h"
#include "drv_glob.h"
#include "ver_its_ds7.h"

/*
 * Initialize the display HW.  Assume we are in an unknown state, power the
 * display down, initialize the frame buffer, and power back up.  Display
 * ALDER bitmap image while kernel is booting.
 */
static void
InitDisplay()
{
}

//***************************************************************************
// PowerOnSelfTest
//
//***************************************************************************
unsigned int PowerOnSelfTest(void)
{
    EdbgOutputDebugString("Microsoft Windows CE Ethernet Bootloader %d.%d\n",
                       EBOOT_VERSION_MAJOR,EBOOT_VERSION_MINOR);
    EdbgOutputDebugString("Copyright(C) Renesas Technology Corp. 1999-2005.\n");

    // Initialize the display.
    //
    //InitDisplay();

	return 1;
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -