Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"unsafe"

"github.com/goplus/lib/c"
"github.com/goplus/llgo/_embdemo/esp32/watchdog"
"github.com/goplus/llgo/_demo/embed/esp32/watchdog"
)

//
Expand Down
4 changes: 2 additions & 2 deletions _embdemo/esp32/rt/main.go → _demo/embed/esp32/rt/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package main
import (
_ "unsafe"

"github.com/goplus/llgo/_embdemo/esp32/watchdog"
"github.com/goplus/llgo/_demo/embed/esp32/watchdog"
)

//
Expand Down Expand Up @@ -278,7 +278,7 @@ func testMultiplicationFunctions() {

// Test muldi3 - signed 64-bit multiplication
assertEqualInt64("muldi3", muldi3(5, 4), 20)
assertEqualInt64("mul极3", muldi3(-5, 4), -20)
assertEqualInt64("muldi3", muldi3(-5, 4), -20)
assertEqualInt64("muldi3", muldi3(5, -4), -20)

// Test muldf3 - double precision multiplication
Expand Down
File renamed without changes.
Loading