[inline Assembly VC ++ 6.0 ]관련된 간단한 질문입니다.

gyxor의 이미지

#include <iostream> 

using namespace std; 

int int1; 
int int2; 
int sum; 

void main ( void ) 
{ 
cout << "Enter two integers"; 
cin >> int1 >> int2; 

__asm { 
mov eax, int1 
add eax, int2 
mov sum, eax // sum = int1 + int2; 
} 
cout << "Sum is " << sum << endl; 
} 

위와 같은 소스는 정상적으로 컴파일 됩니다. 매우 간단한 인라인 어셈블리어 인데요..
문법을 약간 수정해서 문자열에대하여
#include <iostream> 
using namespace std; 

char *CH="abc$ ";

void main ( void ) 
{ 
__asm { 

mov dx, CH 
mov ah, 9 
int 21h // sum = int1 + int2; 
} 
} 

이렇게 문자열 출력을 해주는 문법을 사용하면 에러가 나는군요..

int 21h을 인라인 어셈블리어에서 사용하지 못하기 때문인가요?

비쥬얼 스튜디오에서 다른 기본옵션으로 컴파일했습니다.

위에 수정한 구문은 분명히 책에 있는 소스입니다.

C:\Temp_data\cpp\Cpp1.cpp(25) : error C2415: improper operand type 
Error executing cl.exe. 

Cpp1.exe - 1 error(s), 0 warning(s) 

===> mov ah, 9

이줄에서 에러가 나는데요..

설명부탁드립니다.

익명 사용자의 이미지

CH는 CX 레지스터의 상위 8비트 부분인데 변수명으로 써도 될지 모르겠군요.

Necromancer의 이미지

도스 실행파일일때만 쓸 수 있습니다.

데브피아 쪽에 올리면 더 확실한 답이 나올듯

Written By the Black Knight of Destruction

익명 사용자의 이미지

방준영 wrote:
CH는 CX 레지스터의 상위 8비트 부분인데 변수명으로 써도 될지 모르겠군요.


준영님 의견에 저도 동감합니다.
CH말고 다른 변수명을 사용하심이....
gyxor의 이미지

#include <iostream> 
using namespace std; 

char *p="abc$ "; 

void main ( void ) 
{ 
__asm { 

mov dx, p 
mov ah, 9 
int 21h // sum = int1 + int2; 
} 
} 

C:\Djgpp\Study\Cpp1.cpp(11) : error C2443: operand size conflict
Error executing cl.exe.

Cpp1.exe - 1 error(s), 0 warning(s)

바뀌도 에러가 나지만 같은줄에서..에러내용은 바뀝니다.
아무래도 제 생각에는 int 21h에 서 문제가 나는거 같은데요..

그리고 www.devpia.com 에도 올려봤는데요..
"c++ 이라도 잘하자"라는 클럽에 올렸습니다. 그런데.. 답변이 잘 안올라와요..
답변도 클럽장만 거의 전담합니다.
혹시 데브피아에 올려보라고 하신것이 다른곳을 말씀하신건가요?
클럽말고 프로그램..관련 통합 질문란 같은걸 못찾아서요..[/code]

익명 사용자의 이미지

그런데, 비주얼 C++이라면 32비트 환경 아닌가요? 32비트 환경에서 sizeof(포인터)=4입니다. 4바이트 크기 변수를 2바이트 크기 레지스터에 넣는 건 불가능하지요. 그리고 32비트 환경에서 인터럽트 21h를 지원하지도 않을 텐데요.

gyxor의 이미지

#include <iostream> 
using namespace std; 

char *p="abc$ "; 

void main ( void ) 
{ 
__asm { 

mov edx, p 
mov eax, 2304  // 00000000 00000000 00001001 00000000  =  ah 에 9 대입 
int 21h // sum = int1 + int2; 
} 
} 

가르쳐주신대로 사이즈부분이 안맞아서 에러인거 같아서..
바꿔서 해봤는데요..
다행이 컴파일 에러는 안나지만..
실행이 안됩니다...
답변부탁드립니다.
그리고 혹시 a86 어셈블리어 갖고 계신분 알려주시면 감사하겠습니다.
[/code]

댓글 달기

Filtered HTML

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

BBCode

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param>
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

Textile

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • You can use Textile markup to format text.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Markdown

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • Quick Tips:
    • Two or more spaces at a line's end = Line break
    • Double returns = Paragraph
    • *Single asterisks* or _single underscores_ = Emphasis
    • **Double** or __double__ = Strong
    • This is [a link](http://the.link.example.com "The optional title text")
    For complete details on the Markdown syntax, see the Markdown documentation and Markdown Extra documentation for tables, footnotes, and more.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Plain text

  • HTML 태그를 사용할 수 없습니다.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 줄과 단락은 자동으로 분리됩니다.
댓글 첨부 파일
이 댓글에 이미지나 파일을 업로드 합니다.
파일 크기는 8 MB보다 작아야 합니다.
허용할 파일 형식: txt pdf doc xls gif jpg jpeg mp3 png rar zip.
CAPTCHA
이것은 자동으로 스팸을 올리는 것을 막기 위해서 제공됩니다.