Rename to FibonacciOS
This commit is contained in:
parent
f05d866d84
commit
4eee568840
|
@ -1,4 +1,4 @@
|
|||
import circuitos.exceptions
|
||||
import fibonaccios.exceptions
|
||||
import shlex
|
||||
import console
|
||||
|
||||
|
@ -8,7 +8,7 @@ def get_app_class(template):
|
|||
self.jump('prompt')
|
||||
|
||||
def F_prompt(self):
|
||||
self.console.write(b'CicuitOS sh # ')
|
||||
self.console.write(b'FibonacciOS sh # ')
|
||||
self.store['buf'] = []
|
||||
self.jump('input')
|
||||
|
||||
|
@ -26,7 +26,7 @@ def get_app_class(template):
|
|||
pid = self.os.launch(*line)
|
||||
self.wait(pid)
|
||||
self.transfer_console(pid)
|
||||
except circuitos.exceptions.AppNotFound as e:
|
||||
except fibonaccios.exceptions.AppNotFound as e:
|
||||
print('error: app not found')
|
||||
self.jump('prompt')
|
||||
|
||||
|
|
4
code.py
4
code.py
|
@ -1,2 +1,2 @@
|
|||
import circuitos
|
||||
circuitos.run()
|
||||
import fibonaccios
|
||||
fibonaccios.run()
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
import bin #this is at the end of the script in case any functions from bin
|
||||
#depend on anything here
|
||||
from circuitos.exceptions import *
|
||||
from circuitos.apploader import get_app
|
||||
import circuitos.apploader # apploader hack
|
||||
from fibonaccios.exceptions import *
|
||||
from fibonaccios.apploader import get_app
|
||||
import fibonaccios.apploader # apploader hack
|
||||
import time
|
||||
import usb_cdc
|
||||
|
Loading…
Reference in New Issue
Block a user