User contributions

Jump to: navigation, search
Search for contributions
 
 
      
 
   

(newest | oldest) View ( | ) (20 | 50 | 100 | 250 | 500)

  • 17:47, 13 June 2016 (diff | hist) . . (+207). . N Mano pdp8 prog.0.mano(Created page with " prog.0.mano <PRE> /prog0.mano LDA A ADD B STA C HLT A, DEC 83 B, DEC -23 C, DEC 0 END </PRE> =Internal Links= <i>Parent Article:</i> Mano...") (current)
  • 17:30, 13 June 2016 (diff | hist) . . (+12,919). . N Mano pdp8 VirtualMano.cc(Created page with " VirtualMano.cc <PRE> // Virtual for Mano Basic Computer // // Changes to execute programs one at a time. #ifndef VIRTUALMANO_CC #define VIRTUALMANO_CC #ifndef MANO_H #...") (current)
  • 17:29, 13 June 2016 (diff | hist) . . (+1,207). . N Mano pdp8 SymbolTable.cc(Created page with " SymbolTable.cc <PRE> // SymbolTable Class // Nested Label's are not allowed. #ifndef SYMBOLTABLE_CC #define SYMBOLTABLE_CC #ifndef MANO_H #include "mano.h" #endif #ifn...") (current)
  • 17:28, 13 June 2016 (diff | hist) . . (+2,917). . N Mano pdp8 SymbolMano.cc(Created page with " SymbolMano.cc <PRE> // SymbolMano Class #ifndef SYMBOLMANO_CC #define SYMBOLMANO_CC #ifndef MANO_H #include "mano.h" #endif #ifndef CHAR_STRING_CC #include "charStrin...") (current)
  • 17:24, 13 June 2016 (diff | hist) . . (+2,509). . N Mano pdp8 SecondPass.cc(Created page with " SecondPass.cc <PRE> // SecondPass Class #ifndef SECONDPASS_CC #define SECONDPASS_CC #ifndef MANO_H #include "mano.h" #endif #ifndef CHAR_STRING_CC #include "charStrin...") (current)
  • 17:12, 13 June 2016 (diff | hist) . . (+4,426). . N Mano pdp8 RAM.cc(Created page with " RAM.cc <PRE> // Mano Project // Main memory class #include "mano.h" #ifndef RAM_CC #define RAM_CC #ifndef AVL_TREE_CC #include "avl_tree.cc" #endif #ifndef INSTRUCTION...") (current)
  • 17:11, 13 June 2016 (diff | hist) . . (+7,708). . N Mano pdp8 ProgramLine.cc(Created page with " ProgramLine.cc <PRE> // LineNumber Class #ifndef PROGRAMLINE_CC #define PROGRAMLINE_CC #ifndef MANO_H #include "mano.h" #endif #ifndef CHAR_STRING_CC #include "charStr...") (current)
  • 17:10, 13 June 2016 (diff | hist) . . (+7,425). . N Mano pdp8 memorycell.cc(Created page with " memorycell.cc <PRE> // memorycell class // // #ifndef MEMORYCELL_CC #define MEMORYCELL_CC #ifndef MANO_H #include "mano.h" #endif #include <iostream.h> class memoryc...") (current)
  • 17:08, 13 June 2016 (diff | hist) . . (+3,037). . N Mano pdp8 mano.h(Created page with " mano.h <PRE> // Mano Project #ifndef MANO_H #define MANO_H // Debug options #define DEBUG 1 // Lengths #define LABEL_LENGTH 3 // Bitmask definitions tis easier to add t...") (current)
  • 17:07, 13 June 2016 (diff | hist) . . (+1,089). . N Mano pdp8 Makefile(Created page with " Makefile <PRE> # Makefile for Virtual Mano Basic Computer mano: main.o VirtualMano.o Basic_Mano.o counter.o mainmem.o avl_tree.o stack.o queue.o list.o memorycell.o charStri...") (current)
  • 17:07, 13 June 2016 (diff | hist) . . (+4,168). . N Mano pdp8 mainmem.cc(Created page with " mainmem.cc <PRE> // Mano Project // Main memory class #ifndef MAIN_MEMORY_CC #define MAIN_MEMORY_CC #ifndef AVL_TREE_CC #include "avl_tree.cc" #endif #ifndef MEMORYCE...") (current)
  • 17:04, 13 June 2016 (diff | hist) . . (+7,664). . N Mano pdp8 InstructionWord.cc(Created page with " InstructionWord.cc <PRE> // InstructionWord class // // #ifndef INSTRUCTIONWORD_CC #define INSTRUCTIONWORD_CC #ifndef MANO_H #include "mano.h" #endif #include <iostrea...") (current)
  • 16:59, 13 June 2016 (diff | hist) . . (+1,294). . N Mano pdp8 counter.cc(Created page with " counter.cc -- The program counter. <PRE> // counter class #ifndef COUNTER_CC #define COUNTER_CC #include <iostream.h> class counter; ostream& operator << (ostream& os,...") (current)
  • 16:58, 13 June 2016 (diff | hist) . . (+11,924). . N Mano pdp8 ComputerMano.cc(Created page with " ComputerMano.cc <PRE> // Computer Mano class // memory, registers and commands. #ifndef COMPUTERMANO_CC #define COMPUTERMANO_CC #ifndef INSTRUCTIONWORD_CC #include "In...") (current)
  • 16:56, 13 June 2016 (diff | hist) . . (+15,195). . N Mano pdp8 AssemblerMano.cc(Created page with " AssemblerMano.cc -- The assembler interpreter. <PRE> // Mano Assembler #ifndef ASSEMBLERMANO_CC #define ASSEMBLERMANO_CC #ifndef MANO_H #include "mano.h" #endif #ifnde...") (current)
  • 16:49, 13 June 2016 (diff | hist) . . (+11,283). . N Mano pdp8 BasicMano.cc(Created page with " BasicMano.cc <PRE> // Basic Mano class // memory, registers and commands. #ifndef BASICMANO_CC #define BASICMANO_CC #ifndef INSTRUCTIONWORD_CC #include "InstructionWord...") (current)
  • 16:47, 13 June 2016 (diff | hist) . . (+412). . N Mano pdp8 main.cc(Created page with " main.cc <PRE> #ifndef VirtualMano_CC #include "VirtualMano.cc" #endif //using namespace std; //introduces namespace std #include <fstream.h> int main() { ifstre...") (current)
  • 16:46, 13 June 2016 (diff | hist) . . (+271). . N Mano pdp8 main.cc.cin(current)
  • 16:45, 13 June 2016 (diff | hist) . . (+335). . N Mano pdp8 main.cc.inFile(Created page with " <PRE> #ifndef VirtualMano_CC #include "VirtualMano.cc" #endif #include <fstream.h> void main() { ifstream inFile( "prog0.mano", ios::in ); Virtua...") (current)
  • 16:44, 13 June 2016 (diff | hist) . . (+871). . N Mano PDP-8 Simulation Project Source Code(Created page with "Mano PDP-8 Simulation Project Source Code =Source Code= mano_pdp8_AssemblerMano.cc<br /> mano_pdp8_BasicMano.cc<br /> mano_pdp8_ComputerMano.cc<br /> mano_pdp8_...") (current)

(newest | oldest) View ( | ) (20 | 50 | 100 | 250 | 500)