Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6670245
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T03:14:44+00:00 2026-05-26T03:14:44+00:00

I am writing a program in 16 bit Turbo C++ version 3.0 based on

  • 0

I am writing a program in 16 bit Turbo C++ version 3.0 based on partial Assembly and C code. I have to use the local variables of C code in assembly block. I have debug the following code in Borland C++ 5 and MS VC++ 6. It works fine but these compilers are 32 bit therefore I have to do this in Turbo C. In Turbo C++ it displays an Error: “Invalid combination of opcode and oprends” the code is:

void AssignPixel (int X,int Y,int R,int G, int B )
{
_asm {
mov dx, 0x3c8
mov al, 4
out dx, al
inc dx
mov al, R   // ERROR
out dx, al
mov al, G   // ERROR
out dx, al
mov al, B   // ERROR
out dx, al

     mov ah , 0x0c 
     mov al , 4    
     mov cx , X  // ERROR
     mov dx , Y  // ERROR
     int       0x10 
}

Is there any way to use Variables with assembly code. Code Sample will be appreciated.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-26T03:14:45+00:00Added an answer on May 26, 2026 at 3:14 am

    You can’t do these most likely because the sizes of the registers and variables don’t match (8-bit vs 16-bit):

    mov al, R
    mov al, G
    mov al, B
    

    And here the assembler probably expects different syntax:

    mov cx, X
    mov dx, Y
    

    Try these instead:

    mov al, byte ptr [R] ; I don't remember if the brackets are required here
    mov cx, [X]
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am writing a drawing program, Whyteboard -- http://code.google.com/p/whyteboard/ I have implemented image rotating
I was just writing a quick bit of code, and I wanted to use
I am writing a program which if I compile on a Suse 10 32-bit
I'm having a bit of trouble with a C# program I'm writing and it'd
Im writing a program that should read input via stdin, so I have the
I'm writing a program that sends an email out at a client's specific local
I'm writing a program that will do image processing on a 16 bit tiff
When you're writing a program that consists of a small bit of main logic
I'm writing a program right now which produces four unsigned 32-bit integers as output
I'm writing a program using epoll_wait to wait for file descriptors on 64-bit Linux,

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.