Previous 199869 Revisions Next

r18842 Sunday 4th November, 2012 at 13:55:43 UTC by Carl
make expression functions work (nw)
[src/emu/debug]express.c

trunk/src/emu/debug/express.c
r18841r18842
974974      // if this is a function symbol, synthesize an execute function operator
975975      if (symbol->is_function())
976976      {
977         token = m_tokenlist.append(*global_alloc(parse_token(string - stringstart)));
978         token.configure_operator(TVL_EXECUTEFUNC, 0);
977         parse_token &newtoken = m_tokenlist.append(*global_alloc(parse_token(string - stringstart)));
978         newtoken.configure_operator(TVL_EXECUTEFUNC, 0);
979979      }
980980      return;
981981   }

Previous 199869 Revisions Next


© 1997-2024 The MAME Team