mirror of
https://github.com/SpinalHDL/VexRiscv.git
synced 2025-04-24 22:17:05 -04:00
10 lines
171 B
Python
Executable file
10 lines
171 B
Python
Executable file
#!/usr/bin/env python
|
|
|
|
from gcloud import GCInstance
|
|
|
|
gci = GCInstance("vexriscv")
|
|
gci.create()
|
|
gci.start()
|
|
gci.remoteToLocal("run.txt","run.txt")
|
|
gci.stop()
|
|
gci.delete()
|