User contributions
(newest | oldest) View (newer 50 | older 50) (20 | 50 | 100 | 250 | 500)
- 22:44, 7 December 2016 (diff | hist) . . (+632) . . Full-Metal Zombie (current)
- 14:10, 6 December 2016 (diff | hist) . . (+1,010) . . Windows 7 to Ubuntu 16 (current)
- 22:39, 8 October 2016 (diff | hist) . . (+2,227) . . Chocolate (current)
- 22:38, 8 October 2016 (diff | hist) . . (0) . . N File:Chocolate Smooth.jpg (current)
- 22:37, 8 October 2016 (diff | hist) . . (0) . . N File:Chocolate Chunky.jpg (current)
- 22:27, 8 October 2016 (diff | hist) . . (0) . . N File:Valentine day chocolates photo 1024X768.jpg (current)
- 20:44, 3 July 2016 (diff | hist) . . (+8,396) . . N Quad tree search map (current)
- 20:43, 3 July 2016 (diff | hist) . . (+99,033) . . N Quad tree search cgafaq (Created page with "<PRE> From: orourke@cs.smith.edu (Joseph O'Rourke) Newsgroups: comp.graphics.algorithms,news.answers,comp.answers Subject: comp.graphics.algorithms Frequently Asked Questions...") (current)
- 19:39, 3 July 2016 (diff | hist) . . (+3,794) . . N Quad Tree Search Project (current)
- 14:24, 25 June 2016 (diff | hist) . . (+962) . . N Employment References (→NASA - MILA) (current)
- 16:33, 24 June 2016 (diff | hist) . . (+12,149) . . N Legal Disclaimers (→Internal Links) (current)
- 15:52, 24 June 2016 (diff | hist) . . (+5,517) . . N Hawking Reactor (current)
- 12:59, 23 June 2016 (diff | hist) . . (+1,051) . . N Main wiki:Copyrights (Created page with "180px<br clear=all/> Copyright (C) Jesse B. Dooley, All Rights Reserved.<br /> All materials contained on this site are protected by United States copyr...") (current)
- 12:26, 23 June 2016 (diff | hist) . . (+315) . . N Resume (current)
- 17:56, 13 June 2016 (diff | hist) . . (+1,000) . . N Mano PDP-8 Simulation Project (current)
- 17:49, 13 June 2016 (diff | hist) . . (+12,434) . . N Mano pdp8 prog.0.mano.output (Created page with " <PRE> Virtual: InPut 0 charString: charString() Virtual: InPut 0 charString: >> charString: append(char) charString: length() charString: length() charString: append c 1...") (current)
- 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)
(newest | oldest) View (newer 50 | older 50) (20 | 50 | 100 | 250 | 500)