Thread: c++ to assembly

  1. #1
    Unregistered
    Guest

    c++ to assembly

    is there any software that generate assembly code for a given c++ code?

  2. #2
    Registered User Dual-Catfish's Avatar
    Join Date
    Sep 2001
    Posts
    802
    Yes it's called a disassembler. MSVC has one in its application debug.

    Although, disassemblers don't convert C++ source to assembly, they convert the compiled exe. SoftICE would be another example of a disassembler.

  3. #3
    Unregistered
    Guest
    quote :

    is there any software that generate assembly code for a given c++ code?


    yes : your compiler.
    search in your doc for the " generate_assembly_file " option.

  4. #4
    ....
    Join Date
    Aug 2001
    Location
    Groningen (NL)
    Posts
    2,380
    >Yes it's called a disassembler.

    Wrong.

    >your compiler.

    Right.

  5. #5
    Registered User toaster's Avatar
    Join Date
    Apr 2002
    Posts
    161
    programming terms are confusing.
    I thought it was the linker or builder or something.
    think only with code.
    write only with source.

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. Learning Assembly
    By mrafcho001 in forum Tech Board
    Replies: 5
    Last Post: 03-12-2006, 05:00 PM
  2. C to assembly interface
    By Roaring_Tiger in forum C Programming
    Replies: 4
    Last Post: 02-04-2005, 03:51 PM
  3. assembly language...the best tool for game programming?
    By silk.odyssey in forum Game Programming
    Replies: 50
    Last Post: 06-22-2004, 01:11 PM
  4. True ASM vs. Fake ASM ????
    By DavidP in forum A Brief History of Cprogramming.com
    Replies: 7
    Last Post: 04-02-2003, 04:28 AM
  5. C,C++,Perl,Java
    By brusli in forum C Programming
    Replies: 9
    Last Post: 12-31-2001, 03:35 AM