EMULATOR_PDP_11
STEPIC Учебный проект на 'С', эмулятор PDP_11 в стиле ООП
Loading...
Searching...
No Matches
device_io.h
Go to the documentation of this file.
1#ifndef DEVICE_IO_H
2# define DEVICE_IO_H
3
4struct pdp_11_t;
5
6struct dev_io_t;
7
8struct dev_io_t *dev_io_new();
9
10void dev_io_create(struct dev_io_t *);
11void dev_io_destroy(struct dev_io_t *);
12
13void dev_io_load_data(struct pdp_11_t *, struct dev_io_t *, byte_t *);
14
16
17#endif
18#pragma once
void dev_io_create(struct dev_io_t *)
Definition device_io.c:19
struct dev_io_t * dev_io_new()
Definition device_io.c:12
void dev_io_mem_dump(struct pdp_11_t *, address_word_t, word_t)
Definition device_io.c:43
void dev_io_destroy(struct dev_io_t *)
Definition device_io.c:25
void dev_io_load_data(struct pdp_11_t *, struct dev_io_t *, byte_t *)
Definition device_io.c:33
Definition device_io_p.h:9
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