mirror of
https://github.com/tinygo-org/tinygo.git
synced 2026-08-06 03:53:42 +00:00
13 lines
151 B
Go
13 lines
151 B
Go
//go:build rp2040
|
|
|
|
package runtime
|
|
|
|
import (
|
|
"device/rp"
|
|
)
|
|
|
|
const (
|
|
sioIrqFifoProc0 = rp.IRQ_SIO_IRQ_PROC0
|
|
sioIrqFifoProc1 = rp.IRQ_SIO_IRQ_PROC1
|
|
)
|