26 lines
693 B
NASM
26 lines
693 B
NASM
; Copyright (C) 2014 Renesas Electronics Corporation
|
|
; RENESAS ELECTRONICS CONFIDENTIAL AND PROPRIETARY.
|
|
; This program must be used solely for the purpose for which
|
|
; it was furnished by Renesas Electronics Corporation. No part of this
|
|
; program may be reproduced or disclosed to others, in any
|
|
; form, without the prior written permission of Renesas Electronics
|
|
; Corporation.
|
|
;---------------------------------------------------------------------
|
|
; _hdwinit
|
|
;
|
|
; void _hdwinit(void);
|
|
;
|
|
; input:
|
|
; NONE
|
|
; output:
|
|
; NONE
|
|
;---------------------------------------------------------------------
|
|
|
|
; NOTE : THIS IS A TYPICAL EXAMPLE.
|
|
|
|
.PUBLIC _hdwinit
|
|
|
|
.textf .CSEG TEXTF
|
|
_hdwinit:
|
|
RET
|