C++, C# , VB made in ?

If your a member of codenstuff then this is the main place to be. Get together..talk..chat and ponder. Have fun. Chill out. Play games.
16 posts Page 2 of 2
Contributors
User avatar
mandai
Coding God
Coding God
Posts: 2585
Joined: Mon Apr 26, 2010 6:51 pm

Re: C++, C# , VB made in ?
mandai
how did they make the assembly language then?
Machine Assembly is interpreted by the CPU after being read from memory. Check out the x86 specification.
The idea is to use large blocks of low-level assembly code to create small blocks of upper-level program code.
Last edited by mandai on Fri Sep 03, 2010 11:35 am, edited 2 times in total.
User avatar
MrAksel
C# Coder
C# Coder
Posts: 1758
Joined: Fri Mar 26, 2010 12:27 pm

Re: C++, C# , VB made in ?
MrAksel
I know its 1 and 0 its running on but how does windows read that? So it can run PE and PE can run .NET AND .NAT can run high level language applications?
LMAOSHMSFOAIDMT
Laughing my a** of so hard my sombrero fell off and I dropped my taco lmao;


Over 30 projects with source code!
Please give reputation to helpful members!

Image
Image
User avatar
mandai
Coding God
Coding God
Posts: 2585
Joined: Mon Apr 26, 2010 6:51 pm

Re: C++, C# , VB made in ?
mandai
Windows uses the the CreateProcess function as the first step in loading an executable.
User avatar
Insignia
VIP-Member
VIP-Member
Posts: 238
Joined: Thu Feb 11, 2010 5:15 pm

Re: C++, C# , VB made in ?
Insignia
I've learned up on some ASM when I was away here.

It really isn't that hard if you look into it properly.

Hello World in Assembly would be a long the lines of;
Code: Select all

.model small
.stack
.data
message   db "Hello World, In Assembly!", "$"

.code

main   proc
   mov   ax,seg message
   mov   ds,ax

   mov   ah,09
   lea   dx,message
   int   21h

   mov   ax,4c00h
   int   21h
main   endp
end main
User avatar
Axel
Coding God
Coding God
Posts: 1928
Joined: Sun Jun 27, 2010 9:15 pm

Re: C++, C# , VB made in ?
Axel
MrAksel wrote:
I know its 1 and 0 its running on but how does windows read that? So it can run PE and PE can run .NET AND .NAT can run high level language applications?
if you learn it @ school(or wikipedia) , they will give you a whole other way of thinking about 0's and 1's its actually kinda simple :)


but search YouTube for gigafide he made a tutorial about how to make a Bootable OS in assembly !


anyways it was not my question u are all answering like , where is C# made in bla bla but
its almost impossible to make that in assembly? lol windows vista was like 16 000 000 lines of code i think.
my question was, how did they make a language like c++ :D
http://vagex.com/?ref=25000
User avatar
mandai
Coding God
Coding God
Posts: 2585
Joined: Mon Apr 26, 2010 6:51 pm

Re: C++, C# , VB made in ?
mandai
Code: Select all
how did they make a language like c++
Code: Select all
The idea is to use large blocks of low-level assembly code to create small blocks of upper-level program code.
The answer is right there.
16 posts Page 2 of 2
Return to “Codenstuff boardroom”