From 58def35f449a257faddbc26bc4c41e2c5c6758ea Mon Sep 17 00:00:00 2001 From: Zack Buhman Date: Wed, 1 Jan 2025 15:38:30 -0600 Subject: [PATCH] gdrom_jvm_boot: comment crc32 print --- example/gdrom_jvm_boot.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/example/gdrom_jvm_boot.cpp b/example/gdrom_jvm_boot.cpp index f6ec30b..61588e3 100644 --- a/example/gdrom_jvm_boot.cpp +++ b/example/gdrom_jvm_boot.cpp @@ -327,12 +327,14 @@ void main() if (jvm_load_complete) { main_ptr_t jvm_main = reinterpret_cast(load_address); + /* serial::string("crc32: "); int chunks = __data_length / 2048; for (int i = 0; i < chunks; i++) { uint32_t crc = crc32(&((uint8_t *)load_address)[i * 2048], 2048); serial::integer(crc); } + */ serial::string("jvm jump\n"); jvm_main();