mirror of
https://github.com/rvtr/twl_mcu.git
synced 2025-06-18 14:45:41 -04:00
65 lines
1.8 KiB
NASM
65 lines
1.8 KiB
NASM
;/*
|
|
;******************************************************************************
|
|
;*
|
|
;* This device driver was created by Applilet2 for the Applilet2 for 78K0/Kx2
|
|
;* 8-Bit Single-Chip Microcontrollers
|
|
;*
|
|
;* Copyright(C) NEC Electronics Corporation 2002 - 2007
|
|
;* All rights reserved by NEC Electronics Corporation.
|
|
;*
|
|
;* This program should be used on your own responsibility.
|
|
;* NEC Electronics Corporation assumes no responsibility for any losses
|
|
;* incurred by customers or third parties arising from the use of this file.
|
|
;*
|
|
;* Filename : option.asm
|
|
;* Abstract : This file implements OPTION-BYTES/SECURITY-ID setting.
|
|
;* APIlib : Applilet2 for 78K0/Kx2 V2.10 [6 Mar. 2007]
|
|
;*
|
|
;* Device : uPD78F0500_30
|
|
;*
|
|
;* Compiler : CC78K0
|
|
;*
|
|
;* Creation date: 2007/07/11
|
|
;*
|
|
;******************************************************************************
|
|
;*/
|
|
|
|
;/*
|
|
;******************************************************************************
|
|
;* Include files
|
|
;******************************************************************************
|
|
;*/
|
|
$ INCLUDE (option.inc)
|
|
;/*
|
|
;******************************************************************************
|
|
;* Macro define
|
|
;******************************************************************************
|
|
;*/
|
|
|
|
;/*
|
|
;******************************************************************************
|
|
;* Global define
|
|
;******************************************************************************
|
|
;*/
|
|
OPT_SET CSEG AT 80H
|
|
OPTION: DB OPTION_BYTE
|
|
DB POC81
|
|
DB POC82
|
|
DB POC83
|
|
|
|
ONC_SET CSEG AT 84H
|
|
ONCHIP: DB CG_ONCHIP
|
|
|
|
ONC_SBR CSEG AT 7EH
|
|
ONCSBR: DB 0FFH, 0FFH
|
|
|
|
ONC_STK1 DSEG AT 0FD00H
|
|
ONCSTK1: DS 9
|
|
|
|
ONC_STK2 DSEG AT 0FEDFH
|
|
ONCSTK2: DS 1
|
|
|
|
; Start adding user code. Do not edit comment generated here
|
|
; End user code adding. Do not edit comment generated here
|
|
END
|