mirror of
https://github.com/sehugg/8bitworkshop.git
synced 2024-11-28 23:49:20 +00:00
make sure inspect var is not array
This commit is contained in:
parent
f24213aa1d
commit
1b3822050a
@ -1,5 +1,5 @@
|
|||||||
{
|
{
|
||||||
"name":"femto8",
|
"name":"femto16",
|
||||||
"width":16,
|
"width":16,
|
||||||
"vars":{
|
"vars":{
|
||||||
"reg":{"bits":3, "toks":["ax", "bx", "cx", "dx", "ex", "fx", "sp", "ip"]},
|
"reg":{"bits":3, "toks":["ax", "bx", "cx", "dx", "ex", "fx", "sp", "ip"]},
|
||||||
@ -25,6 +25,8 @@
|
|||||||
{"fmt":"pop ~reg", "bits":["01001",0,"00001","110"]},
|
{"fmt":"pop ~reg", "bits":["01001",0,"00001","110"]},
|
||||||
{"fmt":"rts", "bits":["01001","111","00001","110"]},
|
{"fmt":"rts", "bits":["01001","111","00001","110"]},
|
||||||
{"fmt":"jsr ~reg", "bits":["01110","111","00",0,"110"]},
|
{"fmt":"jsr ~reg", "bits":["01110","111","00",0,"110"]},
|
||||||
|
{"fmt":"jsrex ~imm16", "bits":["0001110001011000",0,"0111011100100110"]},
|
||||||
|
{"fmt":"jmp ~imm16", "bits":["0001111101011000",0]},
|
||||||
|
|
||||||
{"fmt":"bcc ~rel8", "bits":["10000001",0]},
|
{"fmt":"bcc ~rel8", "bits":["10000001",0]},
|
||||||
{"fmt":"bcs ~rel8", "bits":["10001001",0]},
|
{"fmt":"bcs ~rel8", "bits":["10001001",0]},
|
||||||
|
@ -697,7 +697,7 @@ var VerilogPlatform = function(mainElement, options) {
|
|||||||
val = gen[name];
|
val = gen[name];
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (val !== undefined) {
|
if (typeof(val) === 'number') {
|
||||||
inspect_obj = gen;
|
inspect_obj = gen;
|
||||||
inspect_sym = name;
|
inspect_sym = name;
|
||||||
} else {
|
} else {
|
||||||
|
Loading…
Reference in New Issue
Block a user