Skip to content

Latest commit

 

History

History
18 lines (14 loc) · 169 Bytes

14.md

File metadata and controls

18 lines (14 loc) · 169 Bytes

系统指令

ecall

call

	.rodata
str:
	.string	"hello world!"

	.text
	.globl	main
main:
	lui		a5,%hi(str)
	addi	a0,a5,%lo(str)
	call	puts