Advertisement
Guest User

[CC] Chiper v6

a guest
Apr 9th, 2017
133
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 26.73 KB | None | 0 0
  1. local bckColLast = term.getBackgroundColor()
  2. local txtColLast = term.getTextColor()
  3.  
  4. local tArgs = { ... }
  5. local WIDTH, HEIGHT = term.getSize()
  6. local COLS = {
  7.     [ 0x0 ] = 0x1;
  8.     [ 0x1 ] = 0x2;
  9.     [ 0x2 ] = 0x4;
  10.     [ 0x3 ] = 0x8;
  11.     [ 0x4 ] = 0x10;
  12.     [ 0x5 ] = 0x20;
  13.     [ 0x6 ] = 0x40;
  14.     [ 0x7 ] = 0x80;
  15.     [ 0x8 ] = 0x100;
  16.     [ 0x9 ] = 0x200;
  17.     [ 0xA ] = 0x400;
  18.     [ 0xB ] = 0x800;
  19.     [ 0xC ] = 0x1000;
  20.     [ 0xD ] = 0x2000;
  21.     [ 0xE ] = 0x4000;
  22.     [ 0xF ] = 0x8000;
  23. }
  24.  
  25. local function inputStream( input )
  26.     if fs.exists( input ) then
  27.         local file = fs.open( input, 'r' )
  28.         input = file.readAll()
  29.         file.close()
  30.     else
  31.         error( "File: "..input.." does not exist!", 0 )
  32.     end
  33.     input=input.."\n"
  34.     local i = 1
  35.     local line = 1
  36.     return {
  37.         [ "next" ] = function()
  38.             local v = input:sub( i, i )
  39.             if v == "\n" then
  40.                 line = line + 1
  41.             end
  42.             i = i + 1
  43.             return v
  44.         end;
  45.         [ "peek" ] = function()
  46.             return input:sub( i, i )
  47.         end;
  48.         [ "eof" ] = function()
  49.             return i > #input
  50.         end;
  51.         [ "setPos" ] = function( pos )
  52.             i = pos
  53.         end;
  54.         [ "error" ] = function( msg )
  55.             error( tArgs[1]..":"..line..": "..msg, 0 )
  56.         end;
  57.     }
  58. end
  59.  
  60. local function tokenize( input )
  61.     local function isId( c )
  62.         return c:match( "[a-zA-Z]" ) ~= nil
  63.     end
  64.     local function isNum( c )
  65.         return c:match( "[0-9]" ) ~= nil
  66.     end
  67.     local function isPunc( c )
  68.         return c:match( "[,$#%(%).]" ) ~= nil
  69.     end
  70.     local function isWht( c )
  71.         return c:match( "[ \t\n]" ) ~= nil
  72.     end
  73.  
  74.     local function readWhile( p )
  75.         local str = ""
  76.         while input.eof() == false and p( input.peek() ) do
  77.             str = str .. input.next()
  78.         end
  79.         return str
  80.     end
  81.     local function String()
  82.         input.next()
  83.         local str = readWhile( function( p ) return p ~= "\"" end )
  84.         input.next()
  85.         return {
  86.             [ "type" ] = "str";
  87.             [ "value" ] = str;
  88.         }
  89.     end
  90.     local function Id()
  91.         return {
  92.             [ "type" ] = "id";
  93.             [ "value" ] = readWhile( function( p )
  94.                 return isNum( p ) or isId( p )
  95.             end ):upper();
  96.         }
  97.     end
  98.     local function Num()
  99.         return {
  100.             [ "type" ] = "num";
  101.             [ "value" ] = readWhile( function( p )
  102.                 return isNum( p ) or isId( p )
  103.             end );
  104.         }
  105.     end
  106.     local function Punc()
  107.         return {
  108.             [ "type" ] = "pnc";
  109.             [ "value" ] = input.next();
  110.         }
  111.     end
  112.     local function Comment()
  113.         input.next()
  114.         readWhile( function( p )
  115.             return p ~= "\n"
  116.         end )
  117.         readWhile( isWht )
  118.         if input.peek() == ";" then
  119.             Comment()
  120.         end
  121.     end
  122.  
  123.     local function Next()
  124.         readWhile( isWht )
  125.         local p = input.peek()
  126.         if p == ";" then
  127.             Comment()
  128.             p = input.peek()
  129.         end
  130.         if isNum( p ) then
  131.             return Num()
  132.         elseif isId( p ) then
  133.             return Id()
  134.         elseif isPunc( p ) then
  135.             return Punc()
  136.         elseif p == "\"" then
  137.             return String()
  138.         elseif p == "" then
  139.             return {
  140.                 [ "type" ] = "EOF";
  141.             }
  142.         elseif p == nil then
  143.             return {
  144.                 [ "type" ] = "EOF";
  145.             }
  146.         end
  147.         error( "unexpected char: "..p.." "..#p )
  148.     end
  149.  
  150.     local curr
  151.     return {
  152.         [ "next" ] = function()
  153.             local v = curr
  154.             curr = nil
  155.             return v or Next()
  156.         end;
  157.         [ "peek" ] = function()
  158.             if curr then
  159.                 return curr
  160.             else
  161.                 curr = Next()
  162.                 return curr
  163.             end
  164.         end;
  165.         [ "eof" ] = input.eof;
  166.         [ "setPos" ] = function( pos )
  167.             input.setPos( pos )
  168.             curr = nil
  169.         end;
  170.         [ "error" ] = input.error;
  171.     }
  172. end
  173.  
  174. local MNEMONICS = {
  175.     [ "HLT" ] = 0;
  176.     [ "RET" ] = 0;
  177.     [ "CALL" ] = 1;
  178.     [ "JMP" ] = 1;
  179.     [ "LD" ] = 2;
  180.     [ "ADD" ] = 2;
  181.     [ "SUB" ] = 2;
  182.     [ "MUL" ] = 2;
  183.     [ "EQL" ] = 2;
  184.     [ "MEQ" ] = 2;
  185.     [ "MOR" ] = 2;
  186.     [ "LEQ" ] = 2;
  187.     [ "LES" ] = 2;
  188.     [ "INT" ] = 2;
  189. }
  190. local ACCEPTED = {}
  191. local VirtualMemory = {}
  192.  
  193. local function parse( input )
  194.     local bc = 0
  195.     local DataStart = 0xFF0
  196.     local function labelArg( name )
  197.         while input.eof() == false do
  198.             local data = input.next()
  199.             if data.type == "str" then
  200.                 if ACCEPTED[ name.value ] == nil then
  201.                     ACCEPTED[ name.value ] = DataStart-1
  202.                 end
  203.                 local d = data.value
  204.                 for i=1, #d do
  205.                     VirtualMemory[ DataStart ] = {string.byte( d:sub( i, i ) )}
  206.                     DataStart = DataStart - 1
  207.                 end
  208.             elseif data.type == "pnc" and data.value == "$" then
  209.                 if input.peek().type == "id" or input.peek().type == "num" then
  210.                     if ACCEPTED[ name.value ] == nil then
  211.                         ACCEPTED[ name.value ] = DataStart-1
  212.                     end
  213.                     VirtualMemory[ DataStart ] = {tonumber( "0x"..input.next().value )}
  214.                     DataStart = DataStart - 1
  215.                 end
  216.             elseif data.type == "pnc" and data.value == "#" then
  217.                 if input.peek().type == "id" or input.peek().type == "num" then
  218.                     if ACCEPTED[ name.value ] == nil then
  219.                         ACCEPTED[ name.value ] = DataStart-1
  220.                     end
  221.                     VirtualMemory[ DataStart ] = {tonumber( input.next().value )}
  222.                     DataStart = DataStart - 1
  223.                 end
  224.             else
  225.                 input.error("DB can be types of: String, Number!")
  226.             end
  227.             if input.peek().value == "," then
  228.                 input.next()
  229.             else
  230.                 break
  231.             end
  232.         end
  233.     end
  234.     local function parseLabels()
  235.         while input.eof() == false do
  236.             if input.peek().type == "pnc" then
  237.                 if input.peek().value == "." then
  238.                     input.next()
  239.                     local name = input.next()
  240.                     if name.type == "id" then
  241.                         if input.peek().value == "DB" then
  242.                             input.next()
  243.                             labelArg( name )
  244.                         else
  245.                             ACCEPTED[ name.value ] = bc
  246.                         end
  247.                     else
  248.                         input.error("Expected id after '.'(dot) label declaration!")
  249.                     end
  250.                 else
  251.                     input.next()
  252.                 end
  253.             else
  254.                 parseMnemonic()
  255.             end
  256.         end
  257.         input.setPos( 1 )
  258.     end
  259.  
  260.     local function Arg()
  261.         if input.peek().type == "id" then
  262.             return {
  263.                 [ "type" ] = "reg";
  264.                 [ "value" ] = input.next().value;
  265.             }
  266.         elseif input.peek().type == "pnc" then
  267.             if input.peek().value == "$" then
  268.                 input.next()
  269.                 if input.peek().type == "id" or input.peek().type == "num" then
  270.                     return {
  271.                         [ "type" ] = "num";
  272.                         [ "value" ] = tonumber( "0x"..input.next().value );
  273.                     }
  274.                 else
  275.                     input.error( "Expected hexadecimal number!" )
  276.                 end
  277.             elseif input.peek().value == "#" then
  278.                 input.next()
  279.                 if input.peek().type == "num" then
  280.                     return {
  281.                         [ "type" ] = "num";
  282.                         [ "value" ] = tonumber( input.next().value );
  283.                     }
  284.                 else
  285.                     input.error( "Expected numeric number!")
  286.                 end
  287.             elseif input.peek().value == "(" then
  288.                 input.next()
  289.                 local arg = Arg()
  290.                 if input.peek().value == ")" then
  291.                     input.next()
  292.                 else
  293.                     input.error( "Expected ')'!" )
  294.                 end
  295.                 return {
  296.                     [ "type" ] = "mem";
  297.                     [ "value" ] = arg;
  298.                 }
  299.             else
  300.                 input.error( "Expected number declaration '$' or '#' or memory location '(I)'!" )
  301.             end
  302.         else
  303.             input.error( "No valid argument!" )
  304.         end
  305.     end
  306.  
  307.     function parseMnemonic()
  308.         local p = input.peek()
  309.         if p.type == "id" then
  310.             if MNEMONICS[ p.value ] then
  311.                 p = input.next()
  312.                 local args = {}
  313.                 local size = MNEMONICS[ p.value ]
  314.                 if size > 0 then
  315.                     for i=1, size do
  316.                         args[#args+1] = Arg()
  317.                         if size > 1 then
  318.                             if i == 1 then
  319.                                 if input.peek().value == "," then
  320.                                     input.next()
  321.                                 else
  322.                                     input.error( "Expected ','(comma)" )
  323.                                 end
  324.                             end
  325.                         end
  326.                     end
  327.                 end
  328.                 bc = bc + 2
  329.                 return {
  330.                     [ "type" ] = "mnemonic";
  331.                     [ "name" ] = p.value;
  332.                     [ "args" ] = args;
  333.                 }
  334.             else
  335.                 input.error("NOT A MNEMONIC!")
  336.             end
  337.         elseif p.type == "pnc" then
  338.             if p.value == "." then
  339.                 input.next()
  340.                 input.next()
  341.                 if input.peek().value == "DB" then
  342.                     input.next()
  343.                     while input.eof() == false do
  344.                         if input.peek().value == "$" or input.peek().value == "#" then
  345.                             input.next()
  346.                         end
  347.                         input.next()
  348.                         if input.peek().value == "," then
  349.                             input.next()
  350.                         else
  351.                             break
  352.                         end
  353.                     end
  354.                 end
  355.             end
  356.         end
  357.     end
  358.     parseLabels()
  359.     local function Program()
  360.         local prog = {}
  361.         while input.eof() == false do
  362.             prog[#prog+1] = parseMnemonic()
  363.         end
  364.         return {
  365.             [ "type" ] = "program";
  366.             [ "prog" ] = prog;
  367.         }
  368.     end
  369.  
  370.     return Program()
  371. end
  372.  
  373. local function compile( input )
  374.     if input.type == "program" then
  375.         for i=1, #input.prog do
  376.             local curr = compile( input.prog[i] )
  377.             for j=1, #curr do
  378.                 VirtualMemory[ ((i*2)-2)+j ] = curr[j]
  379.             end
  380.         end
  381.     elseif input.type == "mnemonic" then
  382.         local args = {}
  383.         for i=1, #input.args do
  384.             args[#args+1] = compile( input.args[ i ] )
  385.         end
  386.         if input.name == "HLT" then
  387.             return { 0x00, 0x00 }
  388.         elseif input.name == "RET" then
  389.             return { 0x00, 0xE0 }
  390.         elseif input.name == "CALL" then
  391.             if args[1].type == "reg" then
  392.                 if args[1].value == "I" then
  393.                     return { 0x00, 0x0E }
  394.                 elseif ACCEPTED[ args[1].value ] then
  395.                     return { 0x2, ACCEPTED[ args[1].value ] }
  396.                 else
  397.                     error( "CALL compile error! Expected 'I' or Pointer", 0 )
  398.                 end
  399.             elseif args[1].type == "num" then
  400.                 return { 0x2, args[1].value }
  401.             else
  402.                 error( "CALL Compile error!",0 )
  403.             end
  404.         elseif input.name == "INT" then
  405.             if args[1].type == "reg" then
  406.                 if args[1].value == "A" and args[2].type == "num" then
  407.                     return { 0xB, args[2].value }
  408.                 elseif args[1].value == "B" and args[2].type == "num" then
  409.                     return { 0xC, args[2].value }
  410.                 elseif args[1].value == "A" and args[2].value == "I" then
  411.                     return { 0xD0, 0x00 }
  412.                 elseif args[1].value == "B" and args[2].value == "I" then
  413.                     return { 0xE0, 0x00 }
  414.                 elseif args[1].value == "A" and ACCEPTED[ args[2].value ] then
  415.                     return { 0xB, ACCEPTED[ args[2].value ] }
  416.                 elseif args[1].value == "B" and ACCEPTED[ args[2].value ] then
  417.                     return { 0xC, ACCEPTED[ args[2].value ] }
  418.                 else
  419.                     error( "INT compile error! Expected 'I' or Pointer/Number", 0 )
  420.                 end
  421.             else
  422.                 error( "INT compile error! Expected Register A or B",0 )
  423.             end
  424.         elseif input.name == "JMP" then
  425.             if args[1].type == "num" then
  426.                 return { 0x1, args[1].value }
  427.             elseif args[1].type == "reg" then
  428.                 return { 0x1, ACCEPTED[ args[1].value ] }
  429.             else
  430.                 error( "JMP compile error! Expected 'I' or Pointer", 0 )
  431.             end
  432.         elseif input.name == "LD" then
  433.             if args[1].type == "reg" then
  434.                 if args[1].value == "A" and args[2].type == "num" then
  435.                     return { 0x30, args[2].value }
  436.                 elseif args[1].value == "B" and args[2].type == "num" then
  437.                     return { 0x40, args[2].value }
  438.                 elseif args[1].value == "B" and args[2].value == "RND" then
  439.                     return { 0x57, 0x00 }
  440.                 elseif args[1].value == "A" and args[2].type == "mem" then
  441.                     return { 0x73, 0x00 }
  442.                 elseif args[1].value == "B" and args[2].type == "mem" then
  443.                     return { 0x74, 0x00 }
  444.                 elseif args[1].value == "I" and args[2].type == "num" then
  445.                     return { 0x8, args[2].value }
  446.                 elseif args[1].value == "I" and args[2].value == "X" then
  447.                     return { 0x75, 0x00 }
  448.                 elseif args[1].value == "X" and args[2].type == "num" then
  449.                     return { 0x9, args[2].value }
  450.                 elseif args[1].value == "X" and args[2].value == "I" then
  451.                     return { 0x76, 0x00 }
  452.                 elseif args[1].value == "I" and args[2].type == "reg" then
  453.                     if ACCEPTED[ args[2].value ] then
  454.                         return { 0x8, ACCEPTED[ args[2].value ] }
  455.                     else
  456.                         error(args[2].value.." not defined!",0)
  457.                     end
  458.                 elseif args[1].value == "X" and args[2].type == "reg" then
  459.                     if ACCEPTED[ args[2].value ] then
  460.                         return { 0x9, ACCEPTED[ args[2].value ] }
  461.                     else
  462.                         error(args[2].value.." not defined!",0)
  463.                     end
  464.                 end
  465.             elseif args[1].type == "mem" and args[2].value == "A" then
  466.                 return { 0x70, 0x00 }
  467.             elseif args[1].type == "mem" and args[2].value == "B" then
  468.                 return { 0x71, 0x00 }
  469.             elseif args[1].type == "mem" and args[2].type == "num" then
  470.                 return { 0x72, args[2].value }
  471.             else
  472.                 error( "LD compile error!",0 )
  473.             end
  474.         elseif input.name == "ADD" then
  475.             if args[1].type == "reg" then
  476.                 if args[1].value == "A" and args[2].type == "num" then
  477.                     return { 0x50, args[2].value }
  478.                 elseif args[1].value == "A" and args[2].value == "B" then
  479.                     return { 0x51, 0x00 }
  480.                 elseif args[1].value == "B" and args[2].type == "num" then
  481.                     return { 0x52, args[2].value }
  482.                 elseif args[1].value == "B" and args[2].value == "A" then
  483.                     return { 0x53, 0x00 }
  484.                 elseif args[1].value == "I" and args[2].type == "num" then
  485.                     return { 0x54, args[2].value }
  486.                 elseif args[1].value == "I" and args[2].value == "A" then
  487.                     return { 0x55, 0x00 }
  488.                 elseif args[1].value == "I" and args[2].value == "B" then
  489.                     return { 0x56, 0x00 }
  490.                 elseif args[1].value == "X" and args[2].type == "num" then
  491.                     return { 0xA0, args[2].value }
  492.                 elseif args[1].value == "X" and args[2].value == "A" then
  493.                     return { 0xA1, 0x00 }
  494.                 elseif args[1].value == "X" and args[2].value == "B" then
  495.                     return { 0xA2, 0x00 }
  496.                 end
  497.             else
  498.                 error( "ADD compile error!",0 )
  499.             end
  500.         elseif input.name == "SUB" then
  501.             if args[1].type == "reg" then
  502.                 if args[1].value == "A" and args[2].type == "num" then
  503.                     return { 0x58, args[2].value }
  504.                 elseif args[1].value == "A" and args[2].value == "B" then
  505.                     return { 0x59, 0x00 }
  506.                 elseif args[1].value == "B" and args[2].type == "num" then
  507.                     return { 0x5A, args[2].value }
  508.                 elseif args[1].value == "B" and args[2].value == "A" then
  509.                     return { 0x5B, 0x00 }
  510.                 elseif args[1].value == "X" and args[2].type == "num" then
  511.                     return { 0xA3, args[2].value }
  512.                 elseif args[1].value == "X" and args[2].value == "A" then
  513.                     return { 0xA4, 0x00 }
  514.                 elseif args[1].value == "X" and args[2].value == "B" then
  515.                     return { 0xA5, 0x00 }
  516.                 end
  517.             else
  518.                 error( "SUB compile error!",0 )
  519.             end
  520.         elseif input.name == "MUL" then
  521.             if args[1].type == "reg" then
  522.                 if args[1].value == "A" and args[2].type == "num" then
  523.                     return { 0x5C, args[2].value }
  524.                 elseif args[1].value == "A" and args[2].value == "B" then
  525.                     return { 0x5D, 0x00 }
  526.                 elseif args[1].value == "B" and args[2].type == "num" then
  527.                     return { 0x5E, args[2].value }
  528.                 elseif args[1].value == "B" and args[2].value == "A" then
  529.                     return { 0x5F, 0x00 }
  530.                 elseif args[1].value == "X" and args[2].type == "num" then
  531.                     return { 0xA6, args[2].value }
  532.                 elseif args[1].value == "X" and args[2].value == "A" then
  533.                     return { 0xA7, 0x00 }
  534.                 elseif args[1].value == "X" and args[2].value == "B" then
  535.                     return { 0xA8, 0x00 }
  536.                 end
  537.             else
  538.                 error( "MUL compile error!",0 )
  539.             end
  540.         elseif input.name == "EQL" then
  541.             if args[1].type == "reg" then
  542.                 if args[1].value == "A" and args[2].value == "B" then
  543.                     return { 0x60, 0x00 }
  544.                 elseif args[1].value == "A" and args[2].type == "num" then
  545.                     return { 0x61, args[2].value }
  546.                 elseif args[1].value == "B" and args[2].type == "num" then
  547.                     return { 0x62, args[2].value }
  548.                 end
  549.             else
  550.                 error( "EQL compile error!",0 )
  551.             end
  552.         elseif input.name == "MEQ" then
  553.             if args[1].type == "reg" then
  554.                 if args[1].value == "A" and args[2].value == "B" then
  555.                     return { 0x63, 0x00 }
  556.                 elseif args[1].value == "A" and args[2].type == "num" then
  557.                     return { 0x64, args[2].value }
  558.                 elseif args[1].value == "B" and args[2].type == "num" then
  559.                     return { 0x65, args[2].value }
  560.                 end
  561.             else
  562.                 error( "MEQ compile error!",0 )
  563.             end
  564.         elseif input.name == "LEQ" then
  565.             if args[1].type == "reg" then
  566.                 if args[1].value == "RA" and args[2].value == "B" then
  567.                     return { 0x66, 0x00 }
  568.                 elseif args[1].value == "A" and args[2].type == "num" then
  569.                     return { 0x67, args[2].value }
  570.                 elseif args[1].value == "B" and args[2].type == "num" then
  571.                     return { 0x68, args[2].value }
  572.                 end
  573.             else
  574.                 error( "LEQ compile error!",0 )
  575.             end
  576.         elseif input.name == "MOR" then
  577.             if args[1].type == "reg" then
  578.                 if args[1].value == "A" and args[2].value == "B" then
  579.                     return { 0x69, 0x00 }
  580.                 elseif args[1].value == "A" and args[2].type == "num" then
  581.                     return { 0x6A, args[2].value }
  582.                 elseif args[1].value == "B" and args[2].type == "num" then
  583.                     return { 0x6B, args[2].value }
  584.                 end
  585.             else
  586.                 error( "MOR compile error!",0 )
  587.             end
  588.         elseif input.name == "LES" then
  589.             if args[1].type == "reg" then
  590.                 if args[1].value == "A" and args[2].value == "B" then
  591.                     return { 0x6C, 0x00 }
  592.                 elseif args[1].value == "A" and args[2].type == "num" then
  593.                     return { 0x6D, args[2].value }
  594.                 elseif args[1].value == "B" and args[2].type == "num" then
  595.                     return { 0x6E, args[2].value }
  596.                 end
  597.             else
  598.                 error( "LES compile error!",0 )
  599.             end
  600.         end
  601.     elseif input.type == "reg" or input.type == "num" then
  602.         return input
  603.     elseif input.type == "mem" then
  604.         return {
  605.             [ "type" ] = "mem";
  606.             [ "value" ] = input.value.value;
  607.         }
  608.     end
  609. end
  610.  
  611. local function makeByteFile( b, f )
  612.     local file = fs.open( f, 'wb' )
  613.     for i=1, 0xFFF, 2 do
  614.         if VirtualMemory[ i ] then
  615.             local b = { VirtualMemory[i] or 0, VirtualMemory[i+1] or 0 }
  616.             local byte
  617.             if b[1] == 0x8 or b[1] == 0xC or b[1] == 0xB or b[1] == 0x9 or b[1] == 0x1 or b[1] == 0x2 then
  618.                 byte = bit.bor( bit.blshift( b[1], 12 ), b[2] )
  619.             else
  620.                 if type(b[1]) == "table" then
  621.                     b[1] = b[1][1]
  622.                 end
  623.                 if type(b[2]) == "table" then
  624.                     b[2] = b[2][1]
  625.                 end
  626.                 byte = bit.bor( bit.blshift( b[1], 8 ), b[2] )
  627.             end
  628.             if byte then
  629.                 file.write( bit.brshift( bit.band( byte, 0xFF00 ), 8 ) )
  630.                 file.write( bit.band( byte, 0xFF ) )
  631.             end
  632.         else
  633.             file.write( 0 )
  634.             file.write( 0 )
  635.         end
  636.     end
  637.     file.close()
  638. end
  639.  
  640. local rPC = 0
  641. local SP = 0
  642. local rA = 0
  643. local rB = 0
  644. local rI = 0
  645. local rX = 0
  646. local HDD = {}
  647. local MEM = {}
  648. local STACK = {}
  649. local Running = false
  650. local scrBuff = {}
  651. local INTERUPTS = {}
  652. local INT = 0
  653. local TIMERS = {}
  654. local openedHDD = nil
  655.  
  656. local function createHdd()
  657.     local hdd = fs.open( "save.dat", "wb" )
  658.     for i=0, 0xFFF do
  659.         hdd.write( 0 )
  660.     end
  661.     hdd.close()
  662. end
  663.  
  664. local function readHdd()
  665.     local hdd = fs.open( "save.dat", "rb" )
  666.     for i=0, 0xFFF do
  667.         HDD[ i ] = hdd.read()
  668.     end
  669.     hdd.close()
  670. end
  671.  
  672. local function reset()
  673.     if not fs.exists( "save.dat" ) then
  674.         createHdd()
  675.     end
  676.     Running = true
  677.     for i=0, 0xFFF do
  678.         MEM[ i ] = 0
  679.     end
  680.     for i=0, 0xFFF do
  681.         HDD[ i ] = 0
  682.     end
  683.     for i=0, 0xF do
  684.         STACK[ i ] = 0
  685.     end
  686.     INT = 0
  687.     SP = 0
  688.     rPC = 0
  689.     rA = 0
  690.     rB = 0
  691.     rI = 0
  692.     rX = 0
  693.     for i=0, (WIDTH*HEIGHT)-1 do
  694.         scrBuff[ i ] = {
  695.             " ",
  696.             COLS[ 1 ],
  697.             COLS[ 0 ]
  698.         }
  699.     end
  700.     readHdd()
  701. end
  702.  
  703. local _bor, _band, _lshift, _rshift = bit.bor, bit.band, bit.blshift, bit.brshift
  704. local mrAndom = math.random
  705.  
  706. local function fetch()
  707.     local opcode = _bor( _lshift( MEM[ rPC ], 8 ), MEM[ rPC + 1 ] )
  708.     rPC = rPC + 2
  709.     return opcode
  710. end
  711.  
  712. local function wrapRegs()
  713.     rA = rA % (0xFF+1)
  714.     rB = rB % (0xFF+1)
  715.     rI = rI % (0xFFF+1)
  716.     rX = rX % (0xFFF+1)
  717.     rPC = rPC % (0xFFF+1)
  718.     if rA < 0 then rA = 0xFF end
  719.     if rB < 0 then rB = 0xFF end
  720.     if rI < 0 then rI = 0xFFF end
  721.     if rX < 0 then rX = 0xFFF end
  722. end
  723.  
  724. local tremove = table.remove
  725.  
  726. local function updateInterupts()
  727.     for i=1, #TIMERS do
  728.         local timer = TIMERS[ i ]
  729.         local time = timer.time
  730.         if time <= 0 then
  731.             STACK[ SP ] = rPC
  732.             SP = SP + 1
  733.             rPC = timer.jump
  734.             tremove( TIMERS, i )
  735.             INTERUPTS[ INT ] = {
  736.                 ['rA']=rA;
  737.                 ['rB']=rB;
  738.                 ['rI']=rI;
  739.                 ['rX']=rX;
  740.             }
  741.             INT=INT+1
  742.         else
  743.             timer.time=time-1
  744.         end
  745.     end
  746. end
  747.  
  748. local function decode( opcode )
  749.     local op = _band( opcode, 0xF000 )
  750.     if op == 0x0000 then
  751.         op = _band( opcode, 0xFF )
  752.         if op == 0x00 then
  753.             Running = false
  754.             return
  755.         elseif op == 0xE0 then
  756.             SP = SP - 1
  757.             rPC = STACK[ SP ]
  758.             if #INTERUPTS > 0 then
  759.                 INT = INT - 1
  760.                 local int = INTERUPTS[ INT ]
  761.                 rA=int.rA
  762.                 rB=int.rB
  763.                 rI=int.rI
  764.                 rX=int.rX
  765.                 INTERUPTS[ INT ] = nil
  766.             end
  767.             return
  768.         elseif op == 0x0E then
  769.             STACK[ SP ] = rPC
  770.             SP = SP + 1
  771.             rPC = rI
  772.             return
  773.         end
  774.     elseif op == 0x1000 then
  775.         rPC = _band( opcode, 0xFFF )
  776.         return
  777.     elseif op == 0x2000 then
  778.         STACK[ SP ] = rPC
  779.         SP = SP + 1
  780.         rPC = _band( opcode, 0xFFF )
  781.         return
  782.     elseif op == 0x3000 then
  783.         rA = _band( opcode, 0xFF )
  784.         return
  785.     elseif op == 0x4000 then
  786.         rB = _band( opcode, 0xFF )
  787.         return
  788.     elseif op == 0x5000 then
  789.         local hl = _band( _rshift( opcode, 8 ), 0xF )
  790.         if hl == 0x0 then
  791.             rA = rA + _band( opcode, 0xFF )
  792.             return
  793.         elseif hl == 0x1 then
  794.             rA = rA + rB
  795.             return
  796.         elseif hl == 0x2 then
  797.             rB = rB + _band( opcode, 0xFF )
  798.             return
  799.         elseif hl == 0x3 then
  800.             rB = rB + rA
  801.             return
  802.         elseif hl == 0x4 then
  803.             rI = rI + _band( opcode, 0xFF )
  804.             return
  805.         elseif hl == 0x5 then
  806.             rI = rI + rA
  807.             return
  808.         elseif hl == 0x6 then
  809.             rI = rI + rB
  810.             return
  811.         elseif hl == 0x7 then
  812.             rB = mrAndom( 0, 0xFF )
  813.             return
  814.         elseif hl == 0x8 then
  815.             rA = rA - _band( opcode, 0xFF )
  816.             return
  817.         elseif hl == 0x9 then
  818.             rA = rA - rB
  819.             return
  820.         elseif hl == 0xA then
  821.             rB = rB - _band( opcode, 0xFF )
  822.             return
  823.         elseif hl == 0xB then
  824.             rB = rB - rA
  825.             return
  826.         elseif hl == 0xC then
  827.             rA = rA * _band( opcode, 0xFF )
  828.             return
  829.         elseif hl == 0xD then
  830.             rA = rA * rB
  831.             return
  832.         elseif hl == 0xE then
  833.             rB = rB * _band( opcode, 0xFF )
  834.             return
  835.         elseif hl == 0xF then
  836.             rB = rB * rA
  837.             return
  838.         end
  839.     elseif op == 0x6000 then
  840.         local hl = _band( _rshift( opcode, 8 ), 0xF )
  841.         if hl == 0x0 then
  842.             if (rA == rB) == false then
  843.                 rPC = rPC + 2
  844.             end
  845.             return
  846.         elseif hl == 0x1 then
  847.             if (rA == _band( opcode, 0x00FF )) == false then
  848.                 rPC = rPC + 2
  849.             end
  850.             return
  851.         elseif hl == 0x2 then
  852.             if (rB == _band( opcode, 0xFF )) == false then
  853.                 rPC = rPC + 2
  854.             end
  855.             return
  856.         elseif hl == 0x3 then
  857.             if (rA >= rB) == false then
  858.                 rPC = rPC + 2
  859.             end
  860.             return
  861.         elseif hl == 0x4 then
  862.             if (rA >= _band( opcode, 0xFF )) == false then
  863.                 rPC = rPC + 2
  864.             end
  865.             return
  866.         elseif hl == 0x5 then
  867.             if (rB >= _band( opcode, 0xFF )) == false then
  868.                 rPC = rPC + 2
  869.             end
  870.             return
  871.         elseif hl == 0x6 then
  872.             if (rA <= rB) == false then
  873.                 rPC = rPC + 2
  874.             end
  875.             return
  876.         elseif hl == 0x7 then
  877.             if (rA <= _band( opcode, 0xFF )) == false then
  878.                 rPC = rPC + 2
  879.             end
  880.             return
  881.         elseif hl == 0x8 then
  882.             if (rB <= _band( opcode, 0xFF )) == false then
  883.                 rPC = rPC + 2
  884.             end
  885.             return
  886.         elseif hl == 0x9 then
  887.             if (rA > rB) == false then
  888.                 rPC = rPC + 2
  889.             end
  890.             return
  891.         elseif hl == 0xA then
  892.             if (rA > _band( opcode, 0xFF )) == false then
  893.                 rPC = rPC + 2
  894.             end
  895.             return
  896.         elseif hl == 0xB then
  897.             if (rB > _band( opcode, 0xFF )) == false then
  898.                 rPC = rPC + 2
  899.             end
  900.             return
  901.         elseif hl == 0xC then
  902.             if (rA < rB) == false then
  903.                 rPC = rPC + 2
  904.             end
  905.             return
  906.         elseif hl == 0xD then
  907.             if (rA < _band( opcode, 0xFF )) == false then
  908.                 rPC = rPC + 2
  909.             end
  910.             return
  911.         elseif hl == 0xE then
  912.             if (rB < _band( opcode, 0xFF )) == false then
  913.                 rPC = rPC + 2
  914.             end
  915.             return
  916.         end
  917.     elseif op == 0x7000 then
  918.         local hl = _band( _rshift( opcode, 8 ), 0xF )
  919.         if hl == 0 then
  920.             MEM[ rI ] = rA
  921.             return
  922.         elseif hl == 1 then
  923.             MEM[ rI ] = rB
  924.             return
  925.         elseif hl == 2 then
  926.             MEM[ rI ] = _band( opcode, 0xFF )
  927.             return
  928.         elseif hl == 3 then
  929.             rA = MEM[ rI ]
  930.             return
  931.         elseif hl == 4 then
  932.             rB = MEM[ rI ]
  933.             return
  934.         elseif hl == 5 then
  935.             rX = rI
  936.             return
  937.         elseif hl == 6 then
  938.             rI = rX
  939.             return
  940.         end
  941.     elseif op == 0x8000 then
  942.         rI = _band( opcode, 0xFFF )
  943.         return
  944.     elseif op == 0x9000 then
  945.         rX = _band( opcode, 0xFFF )
  946.         return
  947.     elseif op == 0xA000 then
  948.         local hl = _band( _rshift( opcode, 8 ), 0xF )
  949.         if hl == 0x0 then
  950.             rX = rX + _band( opcode, 0xFF )
  951.             return
  952.         elseif hl == 0x1 then
  953.             rX = rX + rA
  954.             return
  955.         elseif hl == 0x2 then
  956.             rX = rX + rB
  957.             return
  958.         elseif hl == 0x3 then
  959.             rX = rX - _band( opcode, 0xFF )
  960.             return
  961.         elseif hl == 0x4 then
  962.             rX = rX - rA
  963.             return
  964.         elseif hl == 0x5 then
  965.             rX = rX - rB
  966.             return
  967.         elseif hl == 0x6 then
  968.             rX = rX * _band( opcode, 0xFF )
  969.             return
  970.         elseif hl == 0x7 then
  971.             rX = rX * rA
  972.             return
  973.         elseif hl == 0x8 then
  974.             rX = rX * rB
  975.             return
  976.         end
  977.     elseif op == 0xB000 then
  978.         TIMERS[ #TIMERS + 1 ] = {
  979.             ["time"] = rA;
  980.             ["jump"] = _band( opcode, 0xFF );
  981.         }
  982.     elseif op == 0xC000 then
  983.         TIMERS[ #TIMERS + 1 ] = {
  984.             ["time"] = rB;
  985.             ["jump"] = _band( opcode, 0xFF );
  986.         }
  987.     elseif op == 0xD000 then
  988.         TIMERS[ #TIMERS + 1 ] = {
  989.             ["time"] = rA;
  990.             ["jump"] = rI;
  991.         }
  992.     elseif op == 0xE000 then
  993.         TIMERS[ #TIMERS + 1 ] = {
  994.             ["time"] = rB;
  995.             ["jump"] = rI;
  996.         }
  997.     end
  998. end
  999.  
  1000. local function loadROM( fn )
  1001.     printError( "LOADING..." )
  1002.     local file = fs.open( fn, "rb" )
  1003.     local byte = file.read()
  1004.     local i = 0
  1005.     while byte ~= nil do
  1006.         MEM[ i ] = byte
  1007.         i = i + 1
  1008.         byte = file.read()
  1009.     end
  1010.     file.close()
  1011.     term.setTextColor( colors.green )
  1012.     print( "LOADED: '"..fn.."'!" )
  1013. end
  1014. local toChar = string.char
  1015. local mFloor = math.floor
  1016. local tSetPos = term.setCursorPos
  1017. local tTSetCol = term.setTextColor
  1018. local tBSetCol = term.setBackgroundColor
  1019. local tWrite = term.write
  1020. local osPull = coroutine.yield
  1021. local osQueue = os.queueEvent
  1022. local BUFFSIZE=(WIDTH*HEIGHT)-1
  1023. local function cycle()
  1024.     for i=1, 0x26 do
  1025.         decode( fetch() )
  1026.         if Running == false then break end
  1027.         wrapRegs()
  1028.         updateInterupts()
  1029.         scrBuff[ ((MEM[ 0xFFB ]*WIDTH) + MEM[ 0xFFA ]) % BUFFSIZE ] = {
  1030.             toChar( MEM[ 0xFFE ] ),
  1031.             COLS[ MEM[ 0xFFD ] ],
  1032.             COLS[ MEM[ 0xFFC ] ]
  1033.         }
  1034.         if MEM[ 0xFFF ] == 1 then
  1035.             MEM[ 0xFFF ] = 0
  1036.             for i=0, BUFFSIZE do
  1037.                 tSetPos( 1+(i % WIDTH), 1+mFloor( i / WIDTH ) )
  1038.                 tBSetCol( scrBuff[ i ][ 3 ] )
  1039.                 tTSetCol( scrBuff[ i ][ 2 ] )
  1040.                 tWrite( scrBuff[ i ][ 1 ] )
  1041.             end
  1042.         elseif MEM[ 0xFFF ] == 2 then
  1043.             MEM[ 0xFFF ] = 0
  1044.             local buff = scrBuff[ ((MEM[ 0xFFB ]*WIDTH) + MEM[ 0xFFA ]) % BUFFSIZE ]
  1045.             MEM[ 0xFFE ] = buff[ 1 ]
  1046.             MEM[ 0xFFD ] = buff[ 2 ]
  1047.             MEM[ 0xFFC ] = buff[ 3 ]
  1048.         elseif MEM[ 0xFFF ] == 3 then
  1049.             MEM[ 0xFFF ] = 0
  1050.             HDD[ rX ] = MEM[ 0xFF8 ]
  1051.         elseif MEM[ 0xFFF ] == 4 then
  1052.             MEM[ 0xFFF ] = 0
  1053.             MEM[ 0xFF8 ] = HDD[ rX ]
  1054.         end
  1055.     end
  1056. end
  1057.  
  1058. local KEYS = {
  1059.     -- P1
  1060.     [ keys.up ] = 0x1; -- UP
  1061.     [ keys.down ] = 0x2; -- DOWN
  1062.     [ keys.left ] = 0x3; -- LEFT
  1063.     [ keys.right ] = 0x4; -- RIGHT
  1064.     [  keys.a ] = 0x5; -- A
  1065.     [  keys.b ] = 0x6; -- B
  1066.  
  1067.     -- P2
  1068.     [  72 ] = 0x7; -- UP
  1069.     [  76 ] = 0x8; -- DOWN
  1070.     [  75 ] = 0x9; -- LEFT
  1071.     [  77 ] = 0xA; -- RIGHT
  1072.     [  51 ] = 0xB; -- A
  1073.     [  52 ] = 0xC; -- B
  1074. }
  1075.  
  1076. if #tArgs > 1 then
  1077.     makeByteFile( compile( parse( tokenize( inputStream( tArgs[ 1 ] ) ) ) ), tArgs[ 2 ] )
  1078.     term.setTextColor( colors.green )
  1079.     print( "COMPILED!" )
  1080.     return
  1081. end
  1082. reset()
  1083. loadROM( tArgs[ 1 ] )
  1084. local myTimer = os.startTimer( 0.01 )
  1085. while Running do
  1086.     local ev, val = osPull()
  1087.     if ev == "key" then
  1088.         MEM[ 0xFF9 ] = (KEYS[ val ] or 0)
  1089.     elseif ev == "key_up" then
  1090.         MEM[ 0xFF9 ] = 0
  1091.     elseif ev == "timer" then
  1092.         if val == myTimer then
  1093.             cycle()
  1094.             myTimer = os.startTimer( 0.01 )
  1095.         end
  1096.     elseif ev == "terminate" then
  1097.         cycle()
  1098.         break
  1099.     end
  1100. end
  1101. term.setBackgroundColor( bckColLast )
  1102. term.setTextColor( txtColLast )
  1103. term.setCursorPos( 1, 1 )
  1104. term.clear()
  1105. fs.delete( "save.dat" )
  1106. local hdd = fs.open( "save.dat", "wb" )
  1107. for i=0, 0xFFF do
  1108.     hdd.write( HDD[ i ] )
  1109. end
  1110. hdd.close()
  1111. print( "Chiper stopped." )
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement