From 55624d4c68239a3dee6933eada9be8e627d9d278 Mon Sep 17 00:00:00 2001 From: Rodrigo Arias Date: Thu, 23 Feb 2023 20:04:50 +0100 Subject: [PATCH] Remove commented code from system.h --- src/emu/system.h | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/emu/system.h b/src/emu/system.h index 9234160..4365533 100644 --- a/src/emu/system.h +++ b/src/emu/system.h @@ -39,15 +39,10 @@ struct system { struct emu_args *args; struct lpt *lpt; - - //struct model_ctx ctx; }; int system_init(struct system *sys, struct emu_args *args, struct trace *trace); int system_connect(struct system *sys, struct bay *bay, struct recorder *rec); struct lpt *system_get_lpt(struct stream *stream); -//struct emu_cpu *system_find_cpu(struct emu_loom *loom, int cpuid); -//int model_ctx_set(struct model_ctx *ctx, int model, void *data); -//int model_ctx_get(struct model_ctx *ctx, int model, void *data); #endif /* EMU_SYSTEM_H */