User contributions

Jump to: navigation, search
Search for contributions
 
 
      
 
   

(newest | oldest) View ( | older 50) (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)
  • 13:54, 13 June 2016 (diff | hist) . . (+1,538). . N Programming Portfolio(C Plus Plus) (current)
  • 14:48, 15 May 2016 (diff | hist) . . (+934). . N Ecs menu datapoolscreen(Created page with "ECS DataPool Subsystem Menu <tt> +--------------------------------------------------------+ |...") (current)
  • 14:46, 15 May 2016 (diff | hist) . . (+909). . N Ecs menu smcscreen(Created page with "ECS SMC Subsystem Menu <tt> +--------------------------------------------------------+ |...") (current)
  • 14:45, 15 May 2016 (diff | hist) . . (+974). . N Ecs menu spacialscreen(Created page with "ECS SPACIALSUBSERVER Subsystem Menu <tt> +--------------------------------------------------------+ |...") (current)
  • 14:43, 15 May 2016 (diff | hist) . . (+919). . N Ecs menu stmgtscreen(Created page with "ECS STMGT Subsystem Menu <tt> +--------------------------------------------------------+ |...") (current)
  • 14:42, 15 May 2016 (diff | hist) . . (+904). . N Ecs menu pdpsscreen(Created page with "ECS PDPS Subsystem Menu <tt> +--------------------------------------------------------+ |...") (current)
  • 14:40, 15 May 2016 (diff | hist) . . (+918). . N Ecs menu ingestscreen(Created page with "ECS INGEST Subsystem Menu <tt> +--------------------------------------------------------+ |...") (current)
  • 14:38, 15 May 2016 (diff | hist) . . (+893). . N Ecs menu ddistscreen(Created page with "ECS DDIST Subsystem Menu <tt> +--------------------------------------------------------+ |...") (current)
  • 14:36, 15 May 2016 (diff | hist) . . (+2,282). . N Ecs menu softserverscreen(Created page with "ECS Soft Server Menu <tt> +--------------------------------------------------------+ |...") (current)
  • 14:32, 15 May 2016 (diff | hist) . . (+1,312). . N Ecs menu machinescreen(Created page with "ECS Machine Menu <tt> +--------------------------------------------------------+ | | |...") (current)
  • 14:29, 15 May 2016 (diff | hist) . . (+1,780). . N Ecs menu subsysscreen(Created page with "ECS 6A07 OPS Menu <tt> +--------------------------------------------------------+ | |...") (current)
  • 14:18, 15 May 2016 (diff | hist) . . (+723). . N Ecs menu(Created page with " <tt> +--------------------------------------------------------+ | | |...") (current)
  • 22:40, 14 May 2016 (diff | hist) . . (+9,377). . N Table(Created page with " <PRE> /** %W% %E% Jesse Dooley * Java(tm) Development Kit * Version JDK 1.1.5 * * This software and documentation is the...") (current)
  • 22:36, 14 May 2016 (diff | hist) . . (+2,588). . N Jul2greg(Created page with " <pre> // // jul2greg() -- convert from base date to month/day/year // It takes raw Julian Date, not the modified one. // // The Julian Day (JD) is a continuous day cou...") (current)
  • 22:32, 14 May 2016 (diff | hist) . . (+491). . N Fibonacci(Created page with " <pre> /* Recursive Fibonacci function. Author: Jesse B. Dooley Purpose: Implement a recursive Fibonacci function in C. Consideration: Use unsigned long for maximum...") (current)
  • 22:27, 14 May 2016 (diff | hist) . . (+4,140). . N Queue(Created page with " Queue Data Structure in C Plus Plus <pre> // Jesse B. Dooley // 22 Oct 1996 // simplequeue.cc // Jesse B. Dooley // 26 May 1995 // template simplequeue class // The foll...") (current)
  • 22:26, 14 May 2016 (diff | hist) . . (+8,836). . N List(Created page with " <pre> // list.cc // Jesse B. Dooley // 28 May 1996 // template double linked list class // The following overloaded operators are // assumed for the L data type. // < less...") (current)
  • 22:20, 14 May 2016 (diff | hist) . . (+27,149). . N CharString(Created page with "Character string class for C Plus Plus. <pre> // charString.cc // by Jesse B. Dooley 03-SEP-1996 #ifndef CHAR_STRING_CC #define CHAR_STRING_CC #include <ctype.h> #include <i...") (current)
  • 21:32, 14 May 2016 (diff | hist) . . (+3,900). . N Stack(Created page with "=Stack Data Structure in C Plus Plus= <PRE> // stack.cc // Jesse B. Dooley // 21 OCT 1996 // template single linked stack class // The following overloaded operator is // as...") (current)
  • 19:12, 14 May 2016 (diff | hist) . . (+2,693). . N Romance Purity Test(Created page with " <CENTER><H1>Jesse's Romance Test</H1><FONT SIZE="5"> Please answer all questions truthfully and send the<BR> results to the address at the bottom.<BR></FONT></CENTER> <PRE> o...") (current)
  • 14:39, 14 May 2016 (diff | hist) . . (+1,348). . N NASA Space Shuttle Missions I supported(Created page with " 180px <br clear=all /> =NASA Space Shuttle Missions I supported= {| border="1" ! colspan="3" |"This table displays STS Mission Pa...") (current)
  • 14:28, 10 May 2016 (diff | hist) . . (+3,136). . N RMS Titanic Legend(Created page with "=The R.M.S. Titanic Legend= <H1>''A Dooley bought a ticket on the R.M.S. Titanic. But not THIS Dooley''</H1> {| | File:theberg.jpg | 180px | Figure 1. What did the berg look...") (current)
  • 20:18, 9 May 2016 (diff | hist) . . (+633). . N NASA Space Shuttle Mission Patches(Created page with " {| border="1" | || Columbia || Challenger || Discovery || Endeavour || Atlantis |- |First || STS-1 || STS-6 ||...") (current)
  • 20:06, 9 May 2016 (diff | hist) . . (+195). . N The Answer(Created page with "=The Answer To Life, the Universe and Everything= {| style="width:100%; background:#BBBBBB; color:black" | center |} =Internal Links= <i>Parent Article:</i>...") (current)
  • 19:49, 9 May 2016 (diff | hist) . . (+1,300). . N Public PGP Key(Created page with "=Public PGP Key[https://en.wikipedia.org/wiki/Pretty_Good_Privacy]= My email account does not support OpenPGP[https://en.wikipedia.org/wiki/Pretty_Good_Privacy#OpenPGP] so enc...") (current)
  • 19:43, 9 May 2016 (diff | hist) . . (+524). . N Geek Code(Created page with "=Geek Code[http://www.joereiss.net/geek/geek.html][https://en.wikipedia.org/wiki/Geek_Code]= My Geek Code<br /> -------------------------BEGIN GEEK CODE BLOCK-----------...") (current)
  • 19:40, 9 May 2016 (diff | hist) . . (+212). . N Dooley Motto(Created page with "=Dooley Motto= ''"<big>Vincit Qui Se Vincit</big>."''<br /> Pronounced: WIN-kit kwee say WIN-kit.<BR /> Latin for, "He conquers who conquers himself." =Internal Links= <i>Pa...") (current)
  • 16:33, 9 May 2016 (diff | hist) . . (+2,728). . N Bag(Created page with "=Bag= <nowiki> // Jesse B. Dooley // 26 May 1995 // template bag class // The following overloaded operators are // assumed overloads or conversions for the S BagData type....") (current)
  • 16:31, 9 May 2016 (diff | hist) . . (+13,102). . N AVLtree(Created page with "=AVLtree= <nowiki> // AVL binary tree // Jesse B. Dooley // (c) 26 May 1996 // template tree class // strict binary search tree // The following overloaded operators are //...") (current)
  • 16:27, 9 May 2016 (diff | hist) . . (+649). . N The Anxiety Article(current)

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