This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
local js = require 'js'.global | |
function js.window:onload() | |
local stdin = js.document:getElementById('stdin') | |
local stdout = js.document:getElementById('stdout') | |
stdin:focus() | |
local conn | |
local indicator = js.document:getElementById('connecting') | |
local connected = false | |
local remote = true |
This file has been truncated, but you can view the full file.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var fengari_web_cli_lua = | |
/******/ (function(modules) { // webpackBootstrap | |
/******/ // The module cache | |
/******/ var installedModules = {}; | |
/******/ | |
/******/ // The require function | |
/******/ function __webpack_require__(moduleId) { | |
/******/ | |
/******/ // Check if module is in cache |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
local ffi = require 'ffi' | |
local C = ffi.C | |
ffi.cdef[[ | |
typedef void FILE; | |
FILE * fopen ( const char * filename, const char * mode ); | |
char * fgets ( char * str, int num, FILE * stream ); | |
int fclose ( FILE * stream ); | |
]] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;File generated by rgblink | |
00:00B5 CopyData | |
00:0061 DisableLCD | |
00:007B EnableLCD | |
00:0082 ClearSprites | |
00:009D FarCopyData | |
00:008D HideSprites | |
00:2024 VBlank | |
00:2306 Timer |