EMULATOR_PDP_11
STEPIC Учебный проект на 'С', эмулятор PDP_11 в стиле ООП
Loading...
Searching...
No Matches
command.h
Go to the documentation of this file.
1#ifndef COMMAND_H
2# define COMMAND_H
3# include "types/types.h"
4// struct command_t;
5struct pdp_11_t;
6
7struct command_t *command_new();
8
9void command_create(struct command_t **);
10void command_destroy(struct command_t **);
11
13
14// void command_do_halt(struct pdp_11_t, address_word_t, word_t);
15// void command_do_add(struct pdp_11_t, address_word_t, word_t);
16// void command_do_mov(struct pdp_11_t, address_word_t, word_t);
17// void command_do_nothing(struct pdp_11_t, address_word_t, word_t);
18
19#endif
20#pragma once
void print_command(address_word_t, word_t, byte_t *)
Definition command.c:51
void command_destroy(struct command_t **)
Definition command.c:43
struct command_t * command_new()
Definition command.c:24
void command_create(struct command_t **)
Definition command.c:32
Definition command_p.h:5
Definition pdp_11_p.h:4
unsigned char byte_t
Definition types.h:6
unsigned short int word_t
Definition types.h:7
unsigned int address_word_t
Definition types.h:11