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

📄 globals.c

📁 LX 800 WindowsCE 6.0 BSP
💻 C
字号:
//
// Copyright (c) Microsoft Corporation.  All rights reserved.
//
//
// Use of this source code is subject to the terms of the Microsoft end-user
// license agreement (EULA) under which you licensed this SOFTWARE PRODUCT.
// If you did not accept the terms of the EULA, you are not authorized to use
// this source code. For a copy of the EULA, please see the LICENSE.RTF on your
// install media.
//
// -----------------------------------------------------------------------------
//
//      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 <windows.h>
#include <x86ioctl.h>
#include <oal.h>
#include <pc.h>

const OAL_IOCTL_HANDLER g_oalIoCtlTable [] = {
#include <ioctl_tab.h>
};

LPCWSTR g_oalIoCtlPlatformType = L"Geode Platform";           // changeable by IOCTL
LPCWSTR g_oalIoCtlPlatformOEM  = L"Geode";           // constant, should've never changed
LPCSTR  g_oalDeviceNameRoot    = "Geode";            // ASCII, initial value

LPCWSTR g_pszDfltProcessorName = L" AMD Geode LX 800@1.0W";

const DWORD g_dwBSPMsPerIntr = 1;           // interrupt every ms

//
// perform RAM auto-detect if RAM ends at CEPC_EXTRA_RAM_START, for 
// size CEPC_EXTRA_RAM_SIZE.
//
const DWORD g_dwRAMAutoDetectStart = CEPC_EXTRA_RAM_START;
const DWORD g_dwRAMAutoDetectSize  = CEPC_EXTRA_RAM_SIZE;

⌨️ 快捷键说明

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