tvpuboot.inc

来自「ti的数字电视芯片 tvp9000的源码」· INC 代码 · 共 48 行

INC
48
字号
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;
;; Copyright 2004 by Texas Instruments Incorporated. All rights reserved.
;; Property of Texas Instruments Incorporated. Restricted rights to use,
;; duplicate or disclose this code are granted through contract.
;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;
;; $Workfile: TvpUboot.inc $
;; $Revision: $
;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;
;; $Description: $
;;
;; Assembly include file for TvpUboot.asm
;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;                    
;; $History: uboot.inc $
; 
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;

;    ***************
;     arm926 stacks
;    ***************

TVP_SVC_STACK_SIZE      .set    64*4        ; size of svc stack in words
TVP_FIQ_STACK_SIZE      .set    128*4        ; size of fiq stack in words
TVP_IRQ_STACK_SIZE      .set    128*4        ; size of irq stack in words

TVP_UDF_STACK_SIZE      .set    32*4        ; size of svc stack in words
TVP_DAB_STACK_SIZE      .set    32*4        ; size of dab stack in words
                              ; 1KB Total size         
;    ***************
;    note the order !
;    ***************


TVP_SVC_STACK       .set TVP_DTCM_TOP-4                     ; supv stack
TVP_FIQ_STACK       .set TVP_SVC_STACK-TVP_SVC_STACK_SIZE   ; fiq stack
TVP_IRQ_STACK       .set TVP_FIQ_STACK-TVP_FIQ_STACK_SIZE   ; irq stack
TVP_DAB_STACK       .set TVP_IRQ_STACK-TVP_IRQ_STACK_SIZE   ; data abort stack
TVP_UDF_STACK       .set TVP_DAB_STACK-TVP_DAB_STACK_SIZE   ; udf stack



⌨️ 快捷键说明

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