2 Commits

Author SHA1 Message Date
596a21f49d move terminal.ts and keys.ts into the emulator folder 2025-02-26 16:48:51 -05:00
e09891482e not necessary 2025-02-26 14:24:25 -05:00
3 changed files with 6 additions and 6 deletions

View File

@ -1,5 +1,5 @@
<!doctype html> <!doctype html>
<html lang="en"> <html>
<head> <head>
<meta charset="UTF-8"/> <meta charset="UTF-8"/>
<meta name="viewport" content="width=device-width"/> <meta name="viewport" content="width=device-width"/>
@ -56,6 +56,6 @@
</style> </style>
</noscript> </noscript>
</footer> </footer>
<script type="module" src="./rt/terminal.ts"></script> <script type="module" src="./rt/emulator/terminal.ts"></script>
</body> </body>
</html> </html>

View File

@ -1,5 +1,5 @@
import run from "./shell/command/command" import run from "../shell/command/command"
import history from "./shell/history" import history from "../shell/history"
type InputClosure = (key_event: KeyboardEvent) => void type InputClosure = (key_event: KeyboardEvent) => void
interface EnterArgs { interface EnterArgs {

View File

@ -1,5 +1,5 @@
import history from "./shell/history" import history from "../shell/history"
import prompt from "./elements/prompt" import prompt from "../elements/prompt"
import keys from "./keys" import keys from "./keys"
const term_win_unsafe = document.querySelector("main") const term_win_unsafe = document.querySelector("main")