mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-06-15 16:20:17 +02:00
Add support for C16_C16 instruction words
* module/language/bytecode.scm (compute-instruction-arity): * module/system/vm/assembler.scm (pack-u16-u16, expand): * module/system/vm/disassembler.scm (disassembler): * libguile/instructions.c (FOR_EACH_INSTRUCTION_WORD_TYPE): Add C16_C16.
This commit is contained in:
parent
214e887dbd
commit
808000034e
4 changed files with 18 additions and 5 deletions
|
@ -1,6 +1,6 @@
|
|||
;;; Bytecode
|
||||
|
||||
;; Copyright (C) 2013 Free Software Foundation, Inc.
|
||||
;; Copyright (C) 2013, 2017 Free Software Foundation, Inc.
|
||||
|
||||
;;;; This library is free software; you can redistribute it and/or
|
||||
;;;; modify it under the terms of the GNU Lesser General Public
|
||||
|
@ -58,6 +58,7 @@
|
|||
((L32) 1)
|
||||
((LO32) 1)
|
||||
((C8_C24) 2)
|
||||
((C16_C16) 2)
|
||||
((B1_C7_L24) 3)
|
||||
((B1_X7_S24) 2)
|
||||
((B1_X7_F24) 2)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue