diff options
-rw-r--r-- | NEWS | 12 | ||||
-rw-r--r-- | mixlib/mix_vm_command.h | 3 |
2 files changed, 12 insertions, 3 deletions
@@ -1,13 +1,21 @@ * GNU MDK -- History of visible changes. Copyright (C) 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2008, 2009, - 2010, 2013, 2014, 2015, 2019, 2020 Free Software Foundation, Inc. + 2010, 2013, 2014, 2015, 2019, 2020, 2022 Free Software Foundation, Inc. See the end for copying conditions. Please send mdk bug reports to bug-mdk@gnu.org. --------------------------------------------------------------------------- +* Version 1.3.1 (unreleased) + +** Bug fixes: + + - mixvm: Properly declare sbt command so that pline also works + (thanks Kevin Sun) + +--------------------------------------------------------------------------- * Version 1.3.0 (31/10/20) - Graphical user interface upgraded to GTK+ 3.14+ @@ -582,7 +590,7 @@ Please send mdk bug reports to bug-mdk@gnu.org. * Copying information: Copyright (C) 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2008, 2009, - 2010, 2013, 2014, 2015, 2019, 2020 Free Software Foundation, Inc. + 2010, 2013, 2014, 2015, 2019, 2020, 2022 Free Software Foundation, Inc. Permission is granted to anyone to make or distribute verbatim copies of this document as received, in any medium, provided that the diff --git a/mixlib/mix_vm_command.h b/mixlib/mix_vm_command.h index bd5fb19..9e96f28 100644 --- a/mixlib/mix_vm_command.h +++ b/mixlib/mix_vm_command.h @@ -1,7 +1,7 @@ /* -*-c-*- ---------------- mix_vm_command.h : * declarations for mix_vm_command_t, describing commands issued to a vm * ------------------------------------------------------------------ - * Copyright (C) 2001, 2006, 2007, 2014 Free Software Foundation, Inc. + * Copyright (C) 2001, 2006, 2007, 2014, 2022 Free Software Foundation, Inc. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -75,6 +75,7 @@ typedef enum { MIX_CMD_W2D, /* print word in decimal notation */ MIX_CMD_STRACE, /* enable/disable instruction traces */ MIX_CMD_PBT, /* print backtrace */ + MIX_CMD_SBT, /* set backtrace limit */ MIX_CMD_STIME, /* enable/disable timing statistics */ MIX_CMD_PTIME, /* print current time statistics */ MIX_CMD_SDDIR, /* set device directory */ |