代码搜索结果
找到约 10,000 项符合
S 的代码
memcfg.s
GET option.s
;**********MEMORY CONTROL PARAMETERS*******************************
;Bank 0 parameter
B0_Tacs EQU 0x0 ;0clk
B0_Tcos EQU 0x0 ;0clk
B0_Tacc EQU 0x6 ;10clk
B0_Tcoh EQU 0x0 ;0
option.s
;**********OPTIONS*******************************
;_RAM_STARTADDRESS EQU 0xc000000
_ISR_STARTADDRESS EQU 0xc7ff000 ;GCS6:8MB SDRAM for SanJiang DVK
_IRQ_BASEADDRESS EQU 0xc000000 ;GCS6
memcfg.s
GET option.s
;**********MEMORY CONTROL PARAMETERS*******************************
;Bank 0 parameter
B0_Tacs EQU 0x0 ;0clk
B0_Tcos EQU 0x0 ;0clk
B0_Tacc EQU 0x6 ;10clk
B0_Tcoh EQU 0x0 ;0
vector.s
;********************************************************************************************************
; uC/OS-II
;
s.cpp
// S.cpp : implementation file
//
#include "stdafx.h"
#include "Server.h"
#include "S.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
s.h
#if !defined(AFX_S_H__9F68F044_2DEC_4808_A418_CD0B9B4A1329__INCLUDED_)
#define AFX_S_H__9F68F044_2DEC_4808_A418_CD0B9B4A1329__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
crt.s
/* ***************************************************************************************************************
crt.s STARTUP ASSEMBLY CODE
-----------------------
Module
page.s
/*
* page.s contains the low-level page-exception code.
* the real work is done in mm.c
*/
.globl page_fault
page_fault:
xchgl %eax,(%esp)
pushl %ecx
pushl %edx
push %ds
push %es
push %fs
head.s
/*
* head.s contains the 32-bit startup code.
*
* NOTE!!! Startup happens at absolute address 0x00000000, which is also where
* the page directory will exist. The startup code will be overwritten
boot.s
!
! boot.<mark>s</mark>
!
! boot.<mark>s</mark> i<mark>s</mark> loaded at 0x7c00 by the bio<mark>s</mark>-<mark>s</mark>tartup routine<mark>s</mark>, and move<mark>s</mark> it<mark>s</mark>elf
! out of the way to addre<mark>s</mark><mark>s</mark> 0x90000, and jump<mark>s</mark> there.
!
! It then load<mark>s</mark> the <mark>s</mark>y<mark>s</mark>tem at 0x10000, u<mark>s</mark>ing BIO<mark>S</mar ...