Skip to content

Commit

Permalink
pylibyaml (#265)
Browse files Browse the repository at this point in the history
* pylibyaml

* version

* dun
  • Loading branch information
AngheloAlf authored Aug 10, 2023
1 parent 172022a commit bf2e406
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
# splat Release Notes

### 0.16.7

* Use `pylibyaml` to speed-up yaml parsing

### 0.16.6

* Add option `ld_rom_start`.
* Allows offsetting rom address linker symbols by some arbitrary value.
* Useful for SN64 games which often have rom addresses offset by 0xB0000000.
Expand Down
6 changes: 5 additions & 1 deletion split.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,11 @@
from typing import Any, Dict, List, Optional, Set, Tuple, Union
from disassembler import disassembler_instance
from util import progress_bar

# This unused import makes the yaml library faster. don't remove
import pylibyaml # pyright: ignore
import yaml

from colorama import Fore, Style
from intervaltree import Interval, IntervalTree
import sys
Expand All @@ -20,7 +24,7 @@
from segtypes.segment import Segment
from util import log, options, palettes, symbols, relocs

VERSION = "0.16.5"
VERSION = "0.16.7"

parser = argparse.ArgumentParser(
description="Split a rom given a rom, a config, and output directory"
Expand Down

0 comments on commit bf2e406

Please sign in to comment.