summaryrefslogtreecommitdiff
path: root/src/arch/register.h
diff options
context:
space:
mode:
authorCyrille Bagard <nocbos@gmail.com>2021-08-24 21:53:52 (GMT)
committerCyrille Bagard <nocbos@gmail.com>2021-08-24 21:53:52 (GMT)
commitce46ff64c00a90d03e2481dcaf1e713f22b71492 (patch)
tree5419bb07b142e34f882478c3f515644f45eaf3ae /src/arch/register.h
parentebc0f829af60263fd5329f1a44f6c1e1162f97af (diff)
Serialize registers when needed.
Diffstat (limited to 'src/arch/register.h')
-rw-r--r--src/arch/register.h15
1 files changed, 0 insertions, 15 deletions
diff --git a/src/arch/register.h b/src/arch/register.h
index 36bd9d9..0265a73 100644
--- a/src/arch/register.h
+++ b/src/arch/register.h
@@ -71,19 +71,4 @@ bool g_arch_register_is_stack_pointer(const GArchRegister *);
-/* --------------------- TRANSPOSITIONS VIA CACHE DES REGISTRES --------------------- */
-
-
-/* Depuis "storage.h" : définition d'une conservation d'instructions d'assemblage (instance) */
-typedef struct _GAsmStorage GAsmStorage;
-
-
-/* Charge un registre depuis une mémoire tampon. */
-GArchRegister *g_arch_register_load(GAsmStorage *, packed_buffer_t *);
-
-/* Sauvegarde un registre dans une mémoire tampon. */
-bool g_arch_register_store(const GArchRegister *, GAsmStorage *, packed_buffer_t *);
-
-
-
#endif /* _ARCH_REGISTER_H */