-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnotes.txt
52 lines (44 loc) · 1.55 KB
/
notes.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
=> Change dimensions for each top level in Details sections
=> Add LDRT//STRT to the instruction set page in Load/Store section
# Branch intstructions =>
topBranch = Toplevel()
topBranch.geometry("750x500")
topBranch.title("Arm Instruction Set")
headerFrame = Frame(topBranch)
headerFrame.pack(fill=X)
# Stack Instructions =>
topStack = Toplevel()
topStack.geometry("750x500")
topStack.title("Arm Instruction Set")
headerFrame = Frame(topStack)
headerFrame.pack(fill=X)
# Load & Store Instructions =>
topLoadStore = Toplevel()
topLoadStore.geometry("750x500")
topLoadStore.title("Arm Instruction Set")
headerFrame = Frame(topLoadStore)
headerFrame.pack(fill=X)
# Move and Arithmetic Intstructions =>
topMovArithmetic = Toplevel()
topMovArithmetic.geometry("750x500")
topMovArithmetic.title("Arm Instruction Set")
headerFrame = Frame(topMovArithmetic)
headerFrame.pack(fill=X)
# Logical Instructions =>
topLogical = Toplevel()
topLogical.geometry("750x500")
topLogical.title("Arm Instruction Set")
headerFrame = Frame(topLogical)
headerFrame.pack(fill=X)
# Multiply and Long Mutltiply operations =>
topMultiply = Toplevel()
topMultiply.geometry("750x500")
topMultiply.title("Arm Instruction Set")
headerFrame = Frame(topMultiply)
headerFrame.pack(fill=X)
# Flag operations =>
topFlag = Toplevel()
topFlag.geometry("750x500")
topFlag.title("Arm Instruction Set")
headerFrame = Frame(topFlag)
headerFrame.pack(fill=X)