Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 6 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -224,18 +224,19 @@ jobs:
export ASAN_OPTIONS=detect_odr_violation=0
./unittests

- uses: actions/setup-python@v5
if: ${{ ! startsWith(matrix.config.name, 'Windows') }}
with:
python-version: '3.13'

- name: Modules tests
if: ${{ ! startsWith(matrix.config.name, 'Windows') }}
shell: bash
run: |
export ASAN_OPTIONS=detect_odr_violation=0
chmod u+x ./lib/modules/.github/run-tests
(./lib/modules/.github/run-tests src)

- uses: actions/setup-python@v5
if: ${{ ! startsWith(matrix.config.name, 'Windows') }}
with:
python-version: '3.13'

- name: REPL tests
if: ${{ ! startsWith(matrix.config.name, 'Windows') }}
shell: bash
Expand Down
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,8 @@
- `CHECK_TYPE_OF` and `CHECK_TYPE_OF_BY_INDEX` super instructions, to check the type of variable against a constant in a single instruction
- `INCREMENT_STORE` and `DECREMENT_STORE` super instructions, to update a value in place when incrementing/decrementing it by a set amount
- `APPEND_IN_PLACE_SYM` and `APPEND_IN_PLACE_SYM_INDEX` super instructions
- `PUSH_RETURN_ADDRESS` instruction now replaces the VM auto push of IP/PP
- remove the stack swapping by pushing arguments in the reverse order by which they are loaded

### Changed
- instructions are on 4 bytes: 1 byte for the instruction, 1 byte of padding, 2 bytes for an immediate argument
Expand Down
Loading
Loading