- box-shadow
- -st-background-image-shadow (does not support inset)
- text-shadow (does not support inset)
- color
- warning-color
- error-color
- success-color
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"last_node_id": 55, | |
"last_link_id": 110, | |
"nodes": [ | |
{ | |
"id": 38, | |
"type": "ControlNetApplyAdvanced", | |
"pos": [ | |
226, | |
-442 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
LD Imm,AC 00xx 59908 | |
LD [0:Imm],AC 01xx 334 | |
LD AC,AC 02xx 246 | |
LD IN,AC 03xx 1 | |
LD Imm,AC 04xx 0 | |
LD [0:X],AC 05xx 38 | |
LD AC,AC 06xx 0 | |
LD IN,AC 07xx 0 | |
LD Imm,AC 08xx 0 | |
LD [Y:Imm],AC 09xx 7 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="utf-8" /> | |
<meta name="viewport" content="width=device-width, initial-scale=1" /> | |
<title>*scratch*</title> | |
<style> | |
body { | |
font-family: Hack, Menlo, Monaco, 'Droid Sans Mono', 'Courier New', monospace; | |
white-space: pre; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.include "defs" | |
.include "kwak8" | |
.include "utility" | |
.org 0 | |
jmp init | |
.org $10 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.include "defs" | |
.include "kwak8" | |
.include "utility" | |
.include "scratch" | |
.use Mode0Code | |
.org 0 | |
jmp init |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Operands are variant unless specified. | |
OPERATOR op,a,b,dst | |
EXTENDS_TEST a,b,dst | |
IS_BUILTIN value,_,dst | |
SET dst,index,value | |
GET src,index,value | |
SET_NAMED dst, indexName:int, value | |
GET_NAMED src, indexName:int, dst |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
OPERATOR op,a,b,dst | |
EXTENDS_TEST a,b,dst | |
IS_BUILTIN value,_,dst | |
SET dst,index,value | |
GET src,index,value | |
SET_NAMED dst, indexName:int, value | |
GET_NAMED src, indexName:int, dst | |
SET_MEMBER indexName:int, src | |
GET_MEMBER indexName:int, dst | |
ASSIGN dst,src |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import js.html.Uint8Array; | |
@:build( RegisterMacro.memoryMappedRegister("r0",123) ) | |
class RegTest | |
{ | |
var ram : Uint8Array; | |
public function new() { | |
ram = new Uint8Array(65536); | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
switch (instruction & 0xf000) { | |
case 0x0000: { //nop movw muls mulsu fmul fmuls fmulsu cpc sbc add | |
switch (instruction & 0x0c00) { | |
case 0x0000: { | |
switch (instruction & 0xff00) { | |
case 0x0000: { //nop | |
} | |
case 0x0100: { //movw |
NewerOlder