388 Commits

Author SHA1 Message Date
9b79f3b5c9 Added lifetime to Parsable trait. 2021-04-26 16:05:07 +01:00
f54325bafe Removed InstFmt, InstTargetFmt and InstTarget. 2021-04-26 15:39:27 +01:00
8d027e580f dcb-decompiler now uses the new instruction display trait.
`DisplayCtx` now supports custom label types.
`Directive::Dw` now returns a target instead of literal.
Main `Inst` now implements `InstDisplay`.
2021-04-26 15:25:41 +01:00
c066f3f2f8 Implemented InstDisplay for pseudo instructions and directives.
Added a lifetime and string variant for `InstFmtArg`.
Added a lifetime to `InstDisplay`.
Added `InstFmtArg::write` to write an argument.
2021-04-26 14:55:46 +01:00
d0bd0d22b3 Added InstDisplay for better instruction formatting. 2021-04-26 14:24:43 +01:00
3c7bed14e6 Store instructions now don't print a register offset if the offset is 0. 2021-04-26 12:24:42 +01:00
8c24f616e2 Renamed Encodable to Encode and Decodable to Decode.
Added `TryEncode` for fallible encodings.
2021-04-26 12:21:00 +01:00
2ebc4eca28 Removed Decodable::Raw now that they're all u32. 2021-04-26 12:09:51 +01:00
049ba7665e Moved Parsable, ParseError and ParseCtx to parse. 2021-04-26 12:07:16 +01:00
88cb7ed679 Moved line parsing into it's own module and renamed it's types to be preprended with Line. 2021-04-26 11:53:26 +01:00
17dfe03800 Added basic::Parsable for parsable basic instructions. 2021-04-26 11:45:22 +01:00
2e44a3e382 clippy::map_err_ignore is now allowed. 2021-04-25 09:46:24 +01:00
1cc35f830d Temporarily removed dcb-compiler while parsing is re-done.
Renamed some types in `inst::parse`.
2021-04-25 09:33:50 +01:00
bb7e0d40af Removed all Raw from inst::basic. Instructions are now decoded directly by their raw form.
`slti` and `sltiu` cannot be shortened anymore.
2021-04-25 09:24:17 +01:00
e6f09fa31c Started work on documenting all instructions. 2021-04-25 07:20:47 +01:00
47454a636d Added ModifiesReg for basic instructions. 2021-04-25 06:59:42 +01:00
8bba037a35 Started work on dcb-mkiso-bin. 2021-04-24 09:18:13 +01:00
b7dd263b37 Added some more documentation on file alphabet root, . and ... 2021-04-24 09:07:28 +01:00
35caa3ad3f Added dcb-uniso-bin to extract all files within the iso in a .bin file. 2021-04-24 09:06:57 +01:00
edbea08b4b DirEntry::read_dir now ignores . and ... 2021-04-24 08:25:30 +01:00
10257747e0 StrAlphabet may now be compared to [u8] and [u8; N]. 2021-04-24 08:22:40 +01:00
c8218c0ca2 Added FilesystemReader::primary_volume_descriptor to expose the primary volume descriptor. 2021-04-24 08:14:17 +01:00
5002933ffb Implemented DecDateTime::to_bytes. 2021-04-24 08:13:44 +01:00
8389195b67 Added StrArrAlphabet::as_bytes_arr. 2021-04-24 08:13:25 +01:00
a3fdbe5f7b Added without_version to iso9660 file strings to get the filename without anything else. 2021-04-24 07:42:29 +01:00
bf5e43a163 Undid reading of form 2 sectors, as it seems to be broken. 2021-04-24 07:42:09 +01:00
a67f67bb04 Now writing edc to sectors. 2021-04-24 07:08:50 +01:00
e91f348ca7 Started work on sector ecc. 2021-04-24 07:00:21 +01:00
082066af3e Invalid edc now returns an error. 2021-04-24 05:57:02 +01:00
b6973b8228 Sector can now store both form 1 and 2 sectors.
Finished `edc` checking in `Sector`.
2021-04-24 05:50:38 +01:00
8f0b8b37ba Removed debugging in dcb-compiler. 2021-04-24 05:18:22 +01:00
d7dd6b928b Fixed bug in dcb-decompiler where -o didn't take any value. 2021-04-24 05:18:00 +01:00
4076e2a18b Added clippy::if_not_else to allowed lints. 2021-04-22 20:08:58 +01:00
6fbf3da552 Added Inst::from_parsed to compile instructions.
`Inst::decode` now doesn't make pseudo instructions if there's a label in the middle of it.
2021-04-22 15:23:57 +01:00
521d85b355 Fixed issue with encoding some basic instructions 2021-04-22 15:23:31 +01:00
9270461f33 FuncTable::search_instructions now doesn't consider functions that are not word aligned. 2021-04-22 15:21:48 +01:00
23b7a4f6fb Fixed issue with converting load_imm, pseudo::load and pseudo::store addresses. 2021-04-22 14:12:08 +01:00
491831e867 FuncTable::search_instructions now accepts the known func table to avoid collisions with it too. 2021-04-21 22:27:54 +01:00
3985d3706e Fixed bc{n}(t|f) and (l|s)wc{n} instructions not displaying their offset in signed hex. 2021-04-21 22:20:24 +01:00
455e7c9e69 dcb-decompiler no longer substitutes labels into li instructions. 2021-04-21 22:17:56 +01:00
7d14942f26 Fixed issue where heuristically found functions would overlap. 2021-04-21 21:41:39 +01:00
106a472c52 Added min_type_alias_impl_trait feature for previous commit. 2021-04-21 14:25:21 +01:00
48c21f5e88 Added pseudo::Encodable. 2021-04-21 14:21:05 +01:00
9a580f4345 Renamed some of load / store instruction operands to be more clear.
Fixed bug where pseudo::store instructions always output `$at` register instead of the proper register.
2021-04-21 12:56:50 +01:00
357d2f172d Directive::write now properly null terminates strings. 2021-04-21 11:43:54 +01:00
54f2f7107b dcb-decompiler now prints the header into a .header file. 2021-04-21 11:43:20 +01:00
669cf1a049 Implemented Bytes::to_bytes for Header. 2021-04-20 02:59:41 +01:00
df6c03e291 Added Directive::write. 2021-04-20 02:59:13 +01:00
d6dec17d91 Pos's add and sub operators now use wrapping by default. 2021-04-20 02:43:37 +01:00
c25f1f2092 Moved some foreign data from game to foreign. 2021-04-20 02:38:43 +01:00