Initial commit.

This commit is contained in:
imi415 2022-06-21 09:28:16 +08:00
commit 9378e80a29
Signed by: imi415
GPG Key ID: 885EC2B5A8A6F8A7
4 changed files with 24 additions and 0 deletions

12
CMakeLists.txt Normal file
View File

@ -0,0 +1,12 @@
cmake_minimum_required(VERSION 3.10)
project(hello)
set(TARGET_SRCS
"src/main.c"
)
set(TARGET_INCLUDES
"include"
)

0
src/main.c Normal file
View File

5
startup_stx7105.S Normal file
View File

@ -0,0 +1,5 @@
.global _start
_start:
nop
nop

7
stx7105.ld Normal file
View File

@ -0,0 +1,7 @@
MEMORY {
}
SECTIONS {
}