From 2f20b47cb411c853694261f1008dd351c48b5c42 Mon Sep 17 00:00:00 2001 From: Jeff Parsons Date: Fri, 26 Jun 2015 10:23:20 -0700 Subject: [PATCH] Whitespace --- tests/pc/vga/L25-4.ASM | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/tests/pc/vga/L25-4.ASM b/tests/pc/vga/L25-4.ASM index 3da0cfba8..f8140f5a6 100644 --- a/tests/pc/vga/L25-4.ASM +++ b/tests/pc/vga/L25-4.ASM @@ -54,15 +54,15 @@ start proc near ; ; Draw 18 10-scan-line high horizontal bars in green, 10 scan lines apart. ; - SETSC SC_MAP_MASK,02h;map mask setting enables only -; plane 1, the green plane - sub di,di;start at beginning of video memory + SETSC SC_MAP_MASK,02h ;map mask setting enables only + ; plane 1, the green plane + sub di,di ;start at beginning of video memory mov al,0ffh - mov bp,18;# bars to draw + mov bp,18 ;# bars to draw HorzBarLoop: - mov cx,80*10;# bytes per horizontal bar - rep stosb;draw bar - add di,80*10;point to start of next bar + mov cx,80*10 ;# bytes per horizontal bar + rep stosb ;draw bar + add di,80*10 ;point to start of next bar dec bp jnz HorzBarLoop ;