Browse Source

Unified whitespace

git-svn-id: https://svn.inf.ethz.ch/svn/lecturers/a2/trunk@7533 8c9fc860-2736-0410-a75d-ab315db34111
negelef 7 năm trước cách đây
mục cha
commit
6e7e8e11d3

+ 2 - 2
source/FoxAMD64Assembler.Mod

@@ -81,8 +81,8 @@ CONST
 	xmm*= InstructionSet.xmm;
 	mem*=InstructionSet.mem;
 	sti*= InstructionSet.sti;
-	imm  *= InstructionSet.imm;
-	ioffset *=InstructionSet.ioffset;
+	imm*= InstructionSet.imm;
+	ioffset*=InstructionSet.ioffset;
 	pntr1616*= InstructionSet.pntr1616;
 	pntr1632*=InstructionSet.pntr1632;
 

+ 3 - 3
source/FoxARMInstructionSet.Mod

@@ -282,7 +282,7 @@ CONST
 	FPSID* = 114; FPSCR* = 115; FPEXC* = 116;
 
 	(* register aliases *)
-	PC*= R15; LR*= R14; SP*= R13; FP*= R12; RESHI *= R1; RES *= R0; RESFS *= SR0; RESFD* = DR0;
+	PC*= R15; LR*= R14; SP*= R13; FP*= R12; RESHI*= R1; RES*= R0; RESFS*= SR0; RESFD*= DR0;
 
 	NumberRegisters*= 117; (* the number of physical registers *)
 	NumberRegisterEntries*= 123; (* the number of register names *)
@@ -312,8 +312,8 @@ CONST
 	Bits5*=32;
 
 	(*
-	ArmEncoding *= 0;
-	ThumbEncoding *= 1;
+	ArmEncoding* = 0;
+	ThumbEncoding* = 1;
 	*)
 
 	TYPE

+ 1 - 1
source/FoxScanner.Mod

@@ -20,7 +20,7 @@ CONST
  
 TYPE
 	StringType* = Strings.String;
-	IdentifierType *= StringPool.Index;
+	IdentifierType* = StringPool.Index;
 	IdentifierString*= ARRAY MaxIdentifierLength+1 OF CHAR;
 
 CONST

+ 1 - 1
source/FoxSections.Mod

@@ -10,7 +10,7 @@ CONST
 	VarSection*=ObjectFile.Data;
 	ConstSection*=ObjectFile.Const;
 	InlineCodeSection*=10;
-	UnknownSectionType *= 11;
+	UnknownSectionType*= 11;
 
 	LineCommentStart*="; ";