Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

remove nbAdded and nbAdded #511

Merged
merged 2 commits into from
Nov 16, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions hub/columns/stack.lisp
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,6 @@
;; stack popping / pushing parameters
( ALPHA :byte )
( DELTA :byte )
( NB_REMOVED :byte )
( NB_ADDED :byte )

;; jump and push related
( PUSH_VALUE_HI :i128 )
Expand Down
4 changes: 0 additions & 4 deletions hub/lookups/hub_into_instruction_decoder.lisp
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,6 @@
instdecoder.STATIC_FLAG
instdecoder.ALPHA
instdecoder.DELTA
instdecoder.NB_REMOVED
instdecoder.NB_ADDED
;;
instdecoder.FAMILY_ACCOUNT
instdecoder.FAMILY_ADD
Expand Down Expand Up @@ -58,8 +56,6 @@
(* hub.stack/STATIC_FLAG (hub-into-instruction-decoder-trigger))
(* hub.stack/ALPHA (hub-into-instruction-decoder-trigger))
(* hub.stack/DELTA (hub-into-instruction-decoder-trigger))
(* hub.stack/NB_REMOVED (hub-into-instruction-decoder-trigger))
(* hub.stack/NB_ADDED (hub-into-instruction-decoder-trigger))
;;
(* hub.stack/ACC_FLAG (hub-into-instruction-decoder-trigger))
(* hub.stack/ADD_FLAG (hub-into-instruction-decoder-trigger))
Expand Down
2 changes: 0 additions & 2 deletions reftables/inst_decoder.lisp
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,6 @@
(FLAG_4 :binary)
(ALPHA :byte)
(DELTA :byte)
(NB_ADDED :byte)
(NB_REMOVED :byte)
(STATIC_GAS :i32)

;;
Expand Down
Loading