Indentations break the feed.
[SquirrelJME.git] / assets / developer-notes / stephanie-gawroriski / 2016 / 02 / 01.mkd
blob291d5d7534b862e8b16bf87ad549a17feab93657
1 # 2016/02/01
3 ***DISCLAIMER***: _These notes are from the defunct k8 project which_
4 _precedes SquirrelJME. The notes for SquirrelJME start on 2016/02/26!_
5 _The k8 project was effectively a Java SE 8 operating system and as such_
6 _all of the notes are in the context of that scope. That project is no_
7 _longer my goal as SquirrelJME is the spiritual successor to it._
9 ## 00:02
11 A new month starts, joy.
13 ## 15:44
15 I suppose for the new assembler/disassembler I will need `InstructionMap` to
16 be able to generate an image map so that instructions are detectable. The base
17 image and the image bytes will be used. When decoding an instruction, it will
18 try instructions with lower images first then to higher ones. It will perform
19 a bit based matching based on the constant bits and the masks. Essentially the
20 purpose of the masks and such are to determine the best possible constant match
21 to an instruction which may be of variable size. I just hope this works for
22 variable length instruction sets such as x86, it would work for Java.
24 ## 18:12
26 For ProgramEditor it may be more useful for the ability to have multiple
27 `ProgramInstruction`s at once.