MicrOS
string_operations.h
Go to the documentation of this file.
1 #include <stdint.h>
2 #include <v8086/v8086.h>
3 
4 #ifndef MICROS_STRING_OPERATIONS_H
5 #define MICROS_STRING_OPERATIONS_H
6 
7 uint16_t perform_movs(v8086* machine, uint8_t width);
8 uint16_t perform_stos(v8086* machine, uint8_t width);
9 uint16_t perform_cmps(v8086* machine, uint8_t width);
10 uint16_t perform_lods(v8086* machine, uint8_t width);
11 uint16_t perform_scas(v8086* machine, uint8_t width);
12 
13 
14 #endif //MICROS_STRING_OPERATIONS_H
uint16_t perform_lods(v8086 *machine, uint8_t width)
Definition: string_operations.c:282
uint16_t perform_scas(v8086 *machine, uint8_t width)
Definition: string_operations.c:314
v8086 * machine
Definition: vbe.c:8
uint16_t perform_cmps(v8086 *machine, uint8_t width)
Definition: string_operations.c:202
Definition: v8086.h:155
uint16_t perform_movs(v8086 *machine, uint8_t width)
Definition: string_operations.c:6
uint16_t perform_stos(v8086 *machine, uint8_t width)
Definition: string_operations.c:120