-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdataTransfer.h
More file actions
28 lines (15 loc) · 820 Bytes
/
Copy pathdataTransfer.h
File metadata and controls
28 lines (15 loc) · 820 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#ifndef _DATATRANSFER_H
#define _DATATRANSFER_H
int dataTransferOpe(uint8_t* text, int curr, uint8_t dir, uint8_t word);
int dataTransferOpeImmediate(uint8_t* text, int curr, uint8_t word);
void dataTransferImmediateRegister(uint8_t* text, int curr);
int dataTransferAccu(uint8_t* text, int curr, uint8_t word, uint8_t dir);
int dataTransferSeg(uint8_t* text, int curr, uint8_t dir);
int dataTransferPushPopOpe(uint8_t* text, int curr, int pop);
int dataTransferPushPopRegister(uint8_t* text, int curr, int pop);
int dataTransferPushPopSeg(uint8_t* text, int curr, int pop);
int dataTransferXchg(uint8_t* text, int curr);
int dataTransferXchgAccu(uint8_t* text, int curr);
int dataTransferInOut(uint8_t* text, int curr, int port, int out);
int dataTransferLeaLdsLes(uint8_t* text, int curr, int id);
#endif