mirror of
https://github.com/Ed94/raddebugger.git
synced 2026-08-03 04:28:12 +00:00
set up scaffolding for dbg engine/frontendm sgs
This commit is contained in:
@@ -6215,6 +6215,19 @@ d_errorf(char *fmt, ...)
|
||||
scratch_end(scratch);
|
||||
}
|
||||
|
||||
////////////////////////////////
|
||||
//~ rjf: Message Functions
|
||||
|
||||
internal void
|
||||
d_msg_(D_MsgKind kind, D_Regs *regs)
|
||||
{
|
||||
D_MsgNode *n = push_array(d_state->msgs_arena, D_MsgNode, 1);
|
||||
SLLQueuePush(d_state->msgs.first, d_state->msgs.last, n);
|
||||
d_state->msgs.count += 1;
|
||||
n->v.kind = kind;
|
||||
n->v.regs = d_regs_copy(d_state->msgs_arena, regs);
|
||||
}
|
||||
|
||||
////////////////////////////////
|
||||
//~ rjf: Main Layer Top-Level Calls
|
||||
|
||||
|
||||
Reference in New Issue
Block a user