INCLUDE Irvine32.inc

.data
	str1	BYTE "Hello SetTextColor",0
	
.code
main	PROC
		call	Clrscr
		mov		edx,OFFSET str1		
		mov		eax,green
		call	SetTextColor
		call	WriteString
		call	Crlf
		
		
		mov		edx,OFFSET str1				
		mov		eax,yellow
		call	SetTextColor
		call	WriteString
		call	Crlf
		
		mov		edx,OFFSET str1		
		mov		eax,red
		call	SetTextColor
		call	WriteString
		call	Crlf
		
		mov		edx,OFFSET str1		
		mov		eax,white
		call	SetTextColor
		call	WriteString
		call	Crlf
		ret
main	ENDP
END		main

루프 없는 코드

'노트정리 > 어셈블리 책 스터디 공간' 카테고리의 다른 글

6.9.3 시험성적계산  (0) 2010.06.30
6.9.2 루프 구현  (0) 2010.06.30
색상 행렬  (0) 2010.06.14
무작위 화면 위치에 문자 출력  (0) 2010.06.13
난수 정수  (0) 2010.06.13
간단한 덧셈2  (0) 2010.06.13
ch5 간단한 덧셈1  (0) 2010.06.13
피보나치 수열 47항 까지 저장파일에 출력하기  (0) 2010.06.13
Posted by 공돌이pooh
,