diff options
| author | Loic Guegan <loic.guegan@mailbox.org> | 2023-12-26 19:27:23 +0100 |
|---|---|---|
| committer | Loic Guegan <loic.guegan@mailbox.org> | 2023-12-26 19:27:23 +0100 |
| commit | f7b1fedfb43f7c4b702bf22b32cbc9aa722f3c8e (patch) | |
| tree | 8f3842a8f921a597f06f38185db5a85e5c1a95e1 /src/vcpu.h | |
| parent | c3b9b472bf9a993a89121b8989e4cc9dbc786f2c (diff) | |
Cleaning code
Diffstat (limited to 'src/vcpu.h')
| -rw-r--r-- | src/vcpu.h | 8 |
1 files changed, 7 insertions, 1 deletions
@@ -51,7 +51,7 @@ typedef struct VCPU_State { * @brief Must be called first! * */ -void VCPUInit(); +void VCPUInit(int width, int height); /** * @brief Fetch instruction from memory @@ -92,3 +92,9 @@ void VCPUDoubleDabble(unsigned char x, unsigned char *u, unsigned char *t, unsig * */ void VCPUDump(); + +/** + * @brief To call before terminating the application + * + */ +void VCPUFinish(); |
