Difference between revisions of "84PCE:Syscalls:021BC4"

From WikiTI
Jump to: navigation, search
(Created page with "GraphBGColorToDrawBGColor 021BC4 - GraphBGColorToDrawBGColor == Synopsis == '''Hypothesized Official...")
 
(Disassembly)
 
Line 18: Line 18:
 
=== Disassembly ===
 
=== Disassembly ===
  
ld.sis   hl, (graphBGColor)
+
ld.sis hl, (graphBGColor)
ld.sis   (drawBGColor), hl
+
ld.sis (drawBGColor), hl
ret
+
ret

Latest revision as of 18:13, 31 May 2016

Synopsis

Hypothesized Official Name: GraphBGColorToDrawBGColor

Syscall Address: 021BC4h

Stores the 16 bit 5-6-5 color located in graphBGColor into drawBGColor.

Inputs

Outputs

Registers Destroyed

  • HL

Disassembly

	ld.sis	hl, (graphBGColor)
	ld.sis	(drawBGColor), hl
	ret