Skip to content

Commit

Permalink
Merge pull request #229 from michalsc/gpio-read-update
Browse files Browse the repository at this point in the history
Huge update on firmware and other goodies :)
  • Loading branch information
michalsc authored Jul 31, 2023
2 parents 9589dd1 + f93492b commit 5b84934
Show file tree
Hide file tree
Showing 7 changed files with 7,654 additions and 6,906 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
cmake_minimum_required(VERSION 3.14.0)
project(Emu68 VERSION 0.15.3)
project(Emu68 VERSION 0.16.0)

include(cmake/verstring.cmake)
include(cmake/firmware_download.cmake)
Expand Down
8 changes: 5 additions & 3 deletions external/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,8 @@ set(LIBDEFLATE_USE_SHARED_LIB OFF CACHE BOOL
"Link the libdeflate-gzip and test programs to the shared library instead
of the static library")

add_subdirectory(capstone)
add_subdirectory(tiny-stl)
add_subdirectory(libdeflate)
add_subdirectory(capstone EXCLUDE_FROM_ALL)
add_subdirectory(tiny-stl EXCLUDE_FROM_ALL)
add_subdirectory(libdeflate EXCLUDE_FROM_ALL)


2 changes: 1 addition & 1 deletion src/aarch64/start.c
Original file line number Diff line number Diff line change
Expand Up @@ -921,7 +921,7 @@ void boot(void *dtree)
void (*flusher)() = (void (*)())((uintptr_t)addr | 0x1000000000);
DuffCopy(addr, tlb_flusher, 10);
arm_flush_cache((uintptr_t)addr, 4*10);
arm_flush_cache((uintptr_t)flusher, 4*10);
arm_icache_invalidate((uintptr_t)flusher, 4*10);
flusher();
tlsf_free(jit_tlsf, addr);

Expand Down
3,016 changes: 1,508 additions & 1,508 deletions src/boards/emmc.h

Large diffs are not rendered by default.

3,660 changes: 1,830 additions & 1,830 deletions src/boards/sdcard.h

Large diffs are not rendered by default.

7,209 changes: 3,672 additions & 3,537 deletions src/pistorm/efinix_firmware.h

Large diffs are not rendered by default.

Loading

0 comments on commit 5b84934

Please sign in to comment.