2021-03-03 14:35:11 +08:00
|
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
// you may not use this file except in compliance with the License.
|
|
|
|
// You may obtain a copy of the License at
|
|
|
|
//
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
//
|
|
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
// See the License for the specific language governing permissions and
|
|
|
|
// limitations under the License.
|
|
|
|
//
|
|
|
|
|
|
|
|
// Assembly code for Hello World
|
|
|
|
// Not using only ALU ops for creating the string
|
|
|
|
|
|
|
|
|
|
|
|
#include "defines.h"
|
|
|
|
|
|
|
|
#define STDOUT 0xd0580000
|
|
|
|
|
|
|
|
.set mfdc, 0x7f9
|
|
|
|
.extern printf_start, printf_end
|
|
|
|
// Code to execute
|
|
|
|
.section .text
|
|
|
|
.global _start
|
|
|
|
_start:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// Enable Caches in MRAC
|
|
|
|
li x1, 0x5f555555
|
|
|
|
csrw 0x7c0, x1
|
|
|
|
li x3, 4
|
|
|
|
csrw mfdc, x3 // disable store merging
|
|
|
|
li x3, RV_ICCM_SADR
|
|
|
|
la x4, printf_start
|
|
|
|
la x5, printf_end
|
|
|
|
|
|
|
|
|
|
|
|
load:
|
|
|
|
lw x6, 0 (x4)
|
|
|
|
sw x6, 0 (x3)
|
|
|
|
addi x4,x4,4
|
|
|
|
addi x3,x3,4
|
|
|
|
bltu x4, x5, load
|
|
|
|
|
|
|
|
fence.i
|
|
|
|
call printf
|
|
|
|
|
|
|
|
// Write 0xff to STDOUT for TB to termiate test.
|
|
|
|
_finish:
|
|
|
|
li x3, STDOUT
|
|
|
|
addi x5, x0, 0xff
|
|
|
|
sb x5, 0(x3)
|
|
|
|
beq x0, x0, _finish
|
|
|
|
.rept 100
|
|
|
|
nop
|
|
|
|
.endr
|
|
|
|
|
|
|
|
.data
|
|
|
|
hw_data:
|
|
|
|
.ascii "----------------------------------------\n"
|
2021-03-29 21:34:16 +08:00
|
|
|
.ascii " Hello World from QUASAR ICCM @LMDC !! \n"
|
2021-03-03 14:35:11 +08:00
|
|
|
.ascii "----------------------------------------\n"
|
|
|
|
.byte 0
|
|
|
|
|
|
|
|
.section .data_text, "ax"
|
|
|
|
// Load string from hw_data
|
|
|
|
// and write to stdout address
|
|
|
|
|
|
|
|
printf:
|
|
|
|
li x3, STDOUT
|
|
|
|
la x4, hw_data
|
|
|
|
|
|
|
|
loop:
|
|
|
|
lb x5, 0(x4)
|
|
|
|
sb x5, 0(x3)
|
|
|
|
addi x4, x4, 1
|
|
|
|
bnez x5, loop
|
|
|
|
ret
|
|
|
|
.long 0,1,2,3,4
|