Skip to content

Commit

Permalink
Cleanup for PR
Browse files Browse the repository at this point in the history
  • Loading branch information
Xeratec committed Nov 29, 2024
1 parent d4aa93e commit 5fb4ab3
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
3 changes: 2 additions & 1 deletion targets/chimera-convolve/src/crt0.S
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,8 @@ _trap_handler_wrap:
lw t6, 0(sp)
addi sp, sp, 128
mret


.global _trap_handler
.weak trap_vector
trap_vector:
j trap_vector
1 change: 1 addition & 0 deletions targets/chimera-open/src/crt0.S
Original file line number Diff line number Diff line change
Expand Up @@ -127,6 +127,7 @@ _trap_handler_wrap:
addi sp, sp, 128
mret

.global _trap_handler
.weak trap_vector
trap_vector:
j trap_vector
5 changes: 4 additions & 1 deletion tests/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,7 @@

add_subdirectory(generic)

# add_target_source(${TARGET_PLATFORM})
# Check if folder has a CMakeLists.txt file
if(EXISTS ${CMAKE_CURRENT_LIST_DIR}/${TARGET_PLATFORM}/CMakeLists.txt)
add_subdirectory(${CMAKE_CURRENT_LIST_DIR}/${TARGET_PLATFORM})
endif()

0 comments on commit 5fb4ab3

Please sign in to comment.