🚀 add binary negation

This commit is contained in:
ValKmjolnir
2023-02-12 15:22:05 +08:00
parent f4deca4427
commit 368b057a91
9 changed files with 72 additions and 37 deletions
+6 -3
View File
@@ -206,7 +206,8 @@ void debugger::run(
&&loadl, &&loadu, &&pnum, &&pnil,
&&pstr, &&newv, &&newh, &&newf,
&&happ, &&para, &&deft, &&dyn,
&&unot, &&usub, &&add, &&sub,
&&lnot, &&usub, &&bnot, &&add,
&&sub,
&&mul, &&div, &&lnk, &&addc,
&&subc, &&mulc, &&divc, &&lnkc,
&&addeq, &&subeq, &&muleq, &&diveq,
@@ -240,7 +241,8 @@ void debugger::run(
&debugger::o_newh, &debugger::o_newf,
&debugger::o_happ, &debugger::o_para,
&debugger::o_deft, &debugger::o_dyn,
&debugger::o_unot, &debugger::o_usub,
&debugger::o_lnot, &debugger::o_usub,
&debugger::o_bnot,
&debugger::o_add, &debugger::o_sub,
&debugger::o_mul, &debugger::o_div,
&debugger::o_lnk, &debugger::o_addc,
@@ -320,8 +322,9 @@ happ: dbg(o_happ ,op_happ );
para: dbg(o_para ,op_para );
deft: dbg(o_deft ,op_deft );
dyn: dbg(o_dyn ,op_dyn );
unot: dbg(o_unot ,op_unot );
lnot: dbg(o_lnot ,op_lnot );
usub: dbg(o_usub ,op_usub );
bnot: dbg(o_bnot ,op_bnot );
add: dbg(o_add ,op_add );
sub: dbg(o_sub ,op_sub );
mul: dbg(o_mul ,op_mul );