File: run.h

package info (click to toggle)
mixal 1.08-9
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 208 kB
  • ctags: 286
  • sloc: ansic: 1,597; makefile: 89; awk: 10
file content (13 lines) | stat: -rw-r--r-- 205 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
/* MIX simulator, copyright 1994 by Darius Bacon */ 
#ifndef RUN_H
#define RUN_H

#include "mix.h"

extern Cell memory[];

void set_initial_state(void);
void print_CPU_state(void);
void run(void);

#endif