diff options
| author | Miquel Sabaté Solà <mikisabate@gmail.com> | 2024-10-29 13:46:17 +0100 |
|---|---|---|
| committer | Miquel Sabaté Solà <mikisabate@gmail.com> | 2024-12-12 07:52:35 +0100 |
| commit | 116361d94073fb4628a5a4728a2a6acacefe606d (patch) | |
| tree | 6d85807e8534fdb1a93c6132047b7301e4e1e039 /lib/xixanta/src/parser.rs | |
| parent | d492aa8271f9fb02351b1144733508194df67746 (diff) | |
| download | tools.nes-116361d94073fb4628a5a4728a2a6acacefe606d.tar.gz tools.nes-116361d94073fb4628a5a4728a2a6acacefe606d.zip | |
Initial support for branching
Signed-off-by: Miquel Sabaté Solà <mikisabate@gmail.com>
Diffstat (limited to 'lib/xixanta/src/parser.rs')
| -rw-r--r-- | lib/xixanta/src/parser.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/xixanta/src/parser.rs b/lib/xixanta/src/parser.rs index ec15edd..2c20369 100644 --- a/lib/xixanta/src/parser.rs +++ b/lib/xixanta/src/parser.rs @@ -4,6 +4,8 @@ use crate::opcodes::{CONTROL_FUNCTIONS, INSTRUCTIONS}; use std::cmp::Ordering; use std::io::{self, BufRead, Read}; +// TODO: allow for labels a la ".Lwhatever:" + /// The Parser struct holds basic data for the current parsing session. #[derive(Default)] pub struct Parser { |
