Skip to content

Commit

Permalink
fix: data ignoring of sequence
Browse files Browse the repository at this point in the history
  • Loading branch information
David Case committed Jun 18, 2024
1 parent b05f5e0 commit 4194fe0
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion bob.go
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,8 @@ func (a *Aip) SetDataFromTapes(tapes []bpu.Tape) {
return
}
// Skip the OPS
if cell.Ops != nil {
// if cell.Ops != nil {
if cell.Op != nil && (*cell.Op == 0 || *cell.Op > 0x4e) {
continue
}
if cell.S != nil {
Expand Down

0 comments on commit 4194fe0

Please sign in to comment.