Skip to content

Commit bf5c44c

Browse files
committed
Some minor changes
1 parent 75bdf78 commit bf5c44c

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

docs/assembler/index.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Assembler create a real code from mnemonic representation of code
1111

1212
------
1313

14-
| Is a very complete assembler with a lot of directives (see DIRECTVES table).
14+
| Stack VM has a very complete assembler with a lot of directives (see DIRECTIVES table).
1515
| Instructions can be extended easily on vm_opcodes_def.c.
1616
| For that you can edit one of the not use instructions (Usually after the HALT instruction).
1717
| Up to 8 arguments can be specified. The assembler stop to search after the first ARG_NON in the list.

vm/vm.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@
2424
#include <stdint.h>
2525

2626
#define VM_VERSION_MAYOR 2 // indicate a really big change that can cause a lot of incompatibilities with previous versions
27-
#define VM_VERSION_MINOR 1 // indicate some change on API or opcode
28-
#define VM_VERSION_PATCH 2 // indicate some minor change or correction
27+
#define VM_VERSION_MINOR 2 // indicate some change on API or opcode
28+
#define VM_VERSION_PATCH 0 // indicate some minor change or correction
2929

3030
//////////////// VM CONFIGURATION ////////////////
3131

0 commit comments

Comments
 (0)