chore: rename module to allow public go-mod imports
This commit is contained in:
parent
b5871337ab
commit
49a1f26c06
@ -2,6 +2,11 @@
|
|||||||
|
|
||||||
An interpreter for the RV32I instruction set.
|
An interpreter for the RV32I instruction set.
|
||||||
|
|
||||||
|
Features:
|
||||||
|
- Supports RV32I base instructions only (so far)
|
||||||
|
- Page-based virtual memory, with custom memory traps and syscalls
|
||||||
|
- Install with Go Modules (`go get code.ivysaur.me/riscvemu`)
|
||||||
|
|
||||||
## License
|
## License
|
||||||
|
|
||||||
ISC License
|
ISC License
|
||||||
|
@ -5,7 +5,7 @@ import (
|
|||||||
"io/ioutil"
|
"io/ioutil"
|
||||||
"os"
|
"os"
|
||||||
|
|
||||||
"riscvemu"
|
"code.ivysaur.me/riscvemu"
|
||||||
)
|
)
|
||||||
|
|
||||||
func main() {
|
func main() {
|
||||||
|
2
cpu.go
2
cpu.go
@ -1,4 +1,4 @@
|
|||||||
package riscvemu
|
package riscvemu // import "code.ivysaur.me/riscvemu"
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"fmt"
|
"fmt"
|
||||||
|
Loading…
Reference in New Issue
Block a user