aboutsummaryrefslogtreecommitdiff
path: root/lib/xixanta
diff options
context:
space:
mode:
Diffstat (limited to 'lib/xixanta')
-rw-r--r--lib/xixanta/src/assembler.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/xixanta/src/assembler.rs b/lib/xixanta/src/assembler.rs
index 989467b..76bf1de 100644
--- a/lib/xixanta/src/assembler.rs
+++ b/lib/xixanta/src/assembler.rs
@@ -429,8 +429,8 @@ impl Assembler {
return Err(EvalError {
line: 0,
message: format!(
- "exceeding segment size for '{}' ({} bytes)",
- current.name, current.size
+ "exceeding segment size for '{}'; expecting {} bytes and {} bytes have already been seen",
+ current.name, current.size, current.offset,
),
global: false,
});