Assembly 데이터에 저장된 16진수를 10진수로 변환해서 화면에

gyxor의 이미지

C++ 같으면 int 형이 있어서 cout 으로 정수를 그냥출력하면되는데요..
어셈블리어를 하다보니 문자열 출력은 있지만
출력하는 함수는 모두 ASCII 코드값을 출력하기 때문에
숫자를 출력하는 함수가 없어서 만들어야 할거같습니다.

1~9사이의 한자리 수라면 아스키 코드값에서 0이 30H이므로 30H을
더해서 출력하면 숫자를 화면에서 볼수있었는데요
자리수가 늘어나다 보니까 10진수로 계산해서 일일이 첫째자리수에서
+30H 를 해서 출력한다는것이 여간복잡한게 아니더라구요

특히 DW 형으로 4자리의 HEXA 코드를 10진수로 바꿔서 화면에
출력을 하는게 문제인데요.. 좋은 방법이 없을까요..
단순히 자리수 마다 16의 멱승을 곱해서 나온수의 마지막들을 더해서
출력한후 총값에서 빼고 다시 또 계산하고...
이 방법 말고 좋은 방법 없을까요?

혹시 숫자자체를 출력해주는 함수를 아시면 알려주시면 감사드리겠습니다.

kslee80의 이미지

엄밀히 말해서 어떤 언어에서도 16진수와 10진수는 사용하지 않죠.
단지 2진수만을 사용할 뿐입니다;;
프로그래머에게 친숙하기 위해서 16진수와 10진수를 코드상에서
사용하는것을 컴파일러가 허용할 따름이죠.
(정확하게는 어셈블러겠죠..)

즉, DoubleWord 형 변수(?) 안에 Hexa 값이 들어있다고 해서
그 값을 꼭 10진수로 변환할 필요성은 없습니다.
어짜피 그 안에는 2진수로 값이 들어있으니깐요..

익명 사용자의 이미지

static int ConvertHexToString(void *s_String, int s_Value)
{
 const char c_HexaTable[] = "0123456789ABCDEF";
 char s_FILO[8];
 int s_Return, s_Index;
 for(s_Return = 0u;s_Value > 0u;s_FILO[s_Return++] = c_HexaTable[s_Value & (16 - 1)/* 16진수일경우 */], s_Value /= 16/*16진수일경우*/);
 for(s_Index = s_Return;s_Index > 0u;*(((char *)s_String)++) = s_FILO[--s_Index]); 
 *((char *)s_String) = '\0';
 return(s_Return);
}

대략 C 로 하면 이렇게 되겠네요.

댓글 달기

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
이것은 자동으로 스팸을 올리는 것을 막기 위해서 제공됩니다.