#ifndef _FEDEX_H
#define _FEDEX_H

#include "ktypes.h"
#include "registers.h"
#include "memory.h"
#include "code.h"

/* ----------------------------------------------------- */

// fedex.h and fedex.c are designed 
//	to simulate KCODE execution

// The single procedure (FEDEX)
//    - first recognizes
//    - then simulates each instruction
//        - updates register contents
//        - updates PC and FLAGS
//        - stores/retrieves data to/from memory

/* ----------------------------------------------------- */

int	debug;

void	FEDEX		(int);

/* ----------------------------------------------------- */

#endif
