generated from maximegris/angular-electron
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor in machine simulator, fix pixi pipeline reset, add new docum…
…ents in about view, add plantuml sequences
- Loading branch information
Showing
43 changed files
with
1,439 additions
and
313 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
Cookies | ||
======= | ||
|
||
We use our own and third-party cookies (google firebase) to improve accessibility, provide certain tools and analyze the browser, to give the best experience in the application. | ||
By continuing to browse we consider that you accept its installation and use. | ||
You can change the configuration or obtain more information in our link. |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
DLX-TABLE Instruction | ||
===================== | ||
|
||
## Type I - J | ||
|
||
| (bit0-2)(bit3-5) | 000 | 001 | 010 | 011 | 100 | 101 | 110 | 111 | | ||
|:----------------:|:--------:|:-------:|:----:|:-----:|:----:|:----:|:----:|:----:| | ||
| 001 | (rr alu) | (float) | J | JAL | BEQZ | BNEZ | BFPT | BFPF | | ||
| 001 | ADDI | ADDUI | SUBI | SUBUI | ANDI | ORI | XORI | LHI | | ||
| 010 | RFE | TRAP | JR | JALR | SLLI | - | SRLI | SRAI | | ||
| 011 | SEQI | SNEI | SLTI | SGTI | SLEI | SGEI | - | - | | ||
| 100 | LB | LH | - | LW | LBU | LHU | LF | LD | | ||
| 101 | SB | SH | - | SW | - | - | SF | SD | | ||
| 110 | - | - | - | - | - | - | - | - | | ||
| 111 | - | - | - | - | - | - | - | - | | ||
|
||
## Type R - OPCODE = 0 | ||
|
||
| (bit26-28)(bit29-31) | 000 | 001 | 010 | 011 | 100 | 101 | 110 | 111 | | ||
|:--------------------:|:------:|:------:|:----:|:----:|:-------:|:-------:|:---:|:---:| | ||
| 001 | - | - | - | - | SLL | - | SRL | SRA | | ||
| 001 | - | - | - | - | - | - | - | - | | ||
| 010 | - | - | SLTU | SGTU | SLEU | SGEU | - | - | | ||
| 011 | MULT | MULTU | DIV | DIVU | - | - | - | - | | ||
| 100 | ADD | ADDU | SUB | SUBU | AND | OR | XOR | - | | ||
| 101 | SEQ | SNE | SLT | SGT | SLE | SGE | - | - | | ||
| 110 | MOVI2S | MOVS2I | MOVF | MOVD | MOVFP2I | MOVI2FP | - | - | | ||
| 111 | - | - | - | - | - | - | - | - | | ||
|
||
## Type R - OPCODE = 1 | ||
|
||
| (bit26-28)(bit29-31) | 000 | 001 | 010 | 011 | 100 | 101 | 110 | 111 | | ||
|:--------------------:|:------:|:------:|:------:|:------:|:------:|:------:|:-----:|:----:| | ||
| 001 | ADDF | SUBF | MULTF | DIVF | ADDD | SUBD | MULTD | DIVD | | ||
| 001 | CVTF2D | CVTF2I | CVTD2F | CVTD2I | CVTI2F | CVTI2D | - | - | | ||
| 010 | EQF | NEF | LTF | GTF | LEF | GEF | - | - | | ||
| 011 | EQD | NED | LTD | GTD | LED | GED | - | - | | ||
| 100 | - | - | - | - | - | - | - | - | | ||
| 101 | - | - | - | - | - | - | - | - | | ||
| 110 | - | - | - | - | - | - | - | - | | ||
| 111 | - | - | - | - | - | - | - | - | |
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,75 +1,40 @@ | ||
@startuml | ||
'https://plantuml.com/class-diagram | ||
skinparam defaultFontName consolas | ||
skinparam defaultTextAlignment center | ||
skinparam minClassWidth 100 | ||
skinparam conditionStyle inside | ||
'skinparam defaultTextAlignment center | ||
skinparam linetype polyline | ||
skinparam linetype ortho | ||
'left to right direction | ||
skinparam nodesep 50 | ||
skinparam ranksep 130 | ||
left to right direction | ||
'!include styles.puml | ||
hide circle | ||
|
||
entity "Machine" as e00 { | ||
Breakpoints | ||
Registers | ||
Memory | ||
} | ||
|
||
'class Users <<(T,red)>> { | ||
' Users table | ||
' == | ||
' -uid: int | ||
' -email: string | ||
' -displayName: string | ||
' -photoURL: string | ||
' -emailVerified: boolean | ||
'} | ||
' | ||
'class FileItem <<(T,red)>> { | ||
' FileItem table | ||
' == | ||
' #uid: int | ||
' -name: string | ||
' -path: string | ||
' -content: string | ||
' -pathKeys: string as JSON | ||
' -key: string | ||
' -dateModified: Date | ||
' -size: number | ||
' -isDirectory: boolean | ||
' -hasSubDirectories: boolean | ||
' -thumbnail: string | ||
' -dataItem: string as JSON | ||
' 'any | ||
'} | ||
|
||
'e01 ||..o{ e02 | ||
'one and only one <--> zero or many | ||
entity "User" as e01 { | ||
|
||
} | ||
|
||
entity "Users" as e01 { | ||
*uid : number <<generated>> | ||
-- | ||
email: text | ||
displayName: text | ||
photoURL: text | ||
emailVerified: boolean | ||
entity "File Manager" as e02 { | ||
Files | ||
} | ||
|
||
entity "FileItems" as e02 { | ||
*f_id : number <<generated>> | ||
key : text | ||
pathKeys: text as JSON | ||
-- | ||
description: text | ||
name: text | ||
path: text | ||
content: text | ||
dateModified: Date | ||
size: number | ||
isDirectory: boolean | ||
hasSubDirectories: boolean | ||
thumbnail: text | ||
dataItem: text as JSON | ||
e1_uid: number <<FK>> | ||
entity "Editor" as e03 { | ||
File | ||
} | ||
|
||
e01 ||..o{ e02 | ||
e01 ||--|| e03: Edit | ||
e01 ||--|| e00: Simulate | ||
e01 ||--|| e02: Manage | ||
e02 ||--|| e03: Load file | ||
e03 ||-up-|| e00: Load code | ||
|
||
|
||
@enduml |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,75 @@ | ||
@startuml | ||
'https://plantuml.com/class-diagram | ||
skinparam defaultFontName consolas | ||
skinparam minClassWidth 100 | ||
skinparam conditionStyle inside | ||
'skinparam defaultTextAlignment center | ||
skinparam linetype polyline | ||
skinparam linetype ortho | ||
'left to right direction | ||
'!include styles.puml | ||
|
||
|
||
'class Users <<(T,red)>> { | ||
' Users table | ||
' == | ||
' -uid: int | ||
' -email: string | ||
' -displayName: string | ||
' -photoURL: string | ||
' -emailVerified: boolean | ||
'} | ||
' | ||
'class FileItem <<(T,red)>> { | ||
' FileItem table | ||
' == | ||
' #uid: int | ||
' -name: string | ||
' -path: string | ||
' -content: string | ||
' -pathKeys: string as JSON | ||
' -key: string | ||
' -dateModified: Date | ||
' -size: number | ||
' -isDirectory: boolean | ||
' -hasSubDirectories: boolean | ||
' -thumbnail: string | ||
' -dataItem: string as JSON | ||
' 'any | ||
'} | ||
|
||
'e01 ||..o{ e02 | ||
'one and only one <--> zero or many | ||
|
||
|
||
entity "Users" as e01 { | ||
*uid : number <<generated>> | ||
-- | ||
email: text | ||
displayName: text | ||
photoURL: text | ||
emailVerified: boolean | ||
} | ||
|
||
entity "FileItems" as e02 { | ||
*f_id : number <<generated>> | ||
key : text | ||
pathKeys: text as JSON | ||
-- | ||
description: text | ||
name: text | ||
path: text | ||
content: text | ||
dateModified: Date | ||
size: number | ||
isDirectory: boolean | ||
hasSubDirectories: boolean | ||
thumbnail: text | ||
dataItem: text as JSON | ||
e1_uid: number <<FK>> | ||
} | ||
|
||
e01 ||..o{ e02 | ||
|
||
|
||
@enduml |
Oops, something went wrong.