Clean up indentation.

This commit is contained in:
Jeff Tranter 2015-07-05 15:29:44 -04:00
parent fa8d33568e
commit fb67d2dfaf

View File

@ -2,7 +2,7 @@
#
# Processor specific code
# CPU = "8080"
# CPU = "8051"
# Description = "Intel 8051 8-bit microprocessor."
# DataWidth = 8 # 8-bit data
# AddressWidth = 16 # 16-bit addresses
@ -60,7 +60,7 @@ addressModeTable = {
"direct,@r1" : "${0:02X},@r1",
"direct,a" : "${0:02X},a",
"direct,direct" : "${0:02X},${1:02X}",
"direct,immed": "${0:02X},#{1:02X}",
"direct,immed" : "${0:02X},#{1:02X}",
"direct,offset" : "${0:02X},${1:02X}",
"direct,r0" : "${0:02X},r0",
"direct,r1" : "${0:02X},r1",
@ -71,7 +71,7 @@ addressModeTable = {
"direct,r6" : "${0:02X},r6",
"direct,r7" : "${0:02X},r7",
"dptr" : "dptr",
"dptr,immed" : "${0:02X},#${1:02X}",
"dptr,immed" : "dptr,#${0:02X}",
"offset" : "${0:04X}",
"r0" : "r0",
"r0,a" : "r0,a",