swh:1:snp:63e2d142f91fc04ec33789d9d7bb85f3bef72e05
Raw File
Tip revision: 66d8e606a8d996ded60bc81d5edf319142a5fad9 authored by Ron Burkey on 04 October 2021, 11:49:55 UTC
Merge branch 'master' of https://github.com/virtualagc/virtualagc
Tip revision: 66d8e60
ISD.h
/****************************************************************************
 * ISD - INSTRUCTION SUBSEQUENCE DECODER subsystem
 *
 * AUTHOR: John Pultorak
 * DATE: 9/22/01
 * FILE: ISD.h
 *
 * VERSIONS:
 *
 * DESCRIPTION:
 * Instruction Subsequence Decoder for the Block 1 Apollo Guidance Computer
 * prototype (AGC4).
 *
 * SOURCES:
 * Mostly based on information from "Logical Description for the Apollo
 * Guidance Computer (AGC4)", Albert Hopkins, Ramon Alonso, and Hugh
 * Blair-Smith, R-393, MIT Instrumentation Laboratory, 1963.
 *
 * NOTES:
 *
 *****************************************************************************
 */
#ifndef ISD_H
#define ISD_H
#include "SEQ.h"
#include "CTR.h"
// INSTRUCTION SUBSEQUENCE DECODER
#ifdef NOTDEF
class ISD
  {
  public:
    static subseq instructionSubsequenceDecoder();
    static char* ISD::subseqString[];
  };
#endif
#endif
back to top