GIDForums  

Go Back   GIDForums > Computer Programming Forums
User Name
Password
Register FAQ Members List Calendar Search Today's Posts Mark Forums Read

Assembly Language

Welcome to the Assembly Language forum.

Post New Thread
Threads in Forum : Assembly Language Forum Tools Search this Forum
  Rating Thread / Thread Starter Last Post Reverse Sort Order Replies Views
Unhappy
by vikramaditya
Hey, i got this piece of code that will detect VMWare but this is for Linux 32 bit: int vmInfo, vmVer; asm("mov $0x564D5868, %eax"); /* magic number */ asm("movw $0x0A, %cx"); asm("movw $0x5658, %dx"); /* VMware I/O port */ asm("in %dx, %eax"); //(or outl %eax,...
03-Dec-2008 23:59
by vikramaditya Go to last post
0 330
 
by Sh0gun
Hey guys, just came across this site by goggling. I'm in a grade 12 computer engineering course and i've been out of class with a stomach flu for almost 2 weeks. I've come back and I'm way behind but the marks for midterms are submitted friday. I really want to try getting the bulk of this done so...
27-Nov-2008 23:56
by Howard_L Go to last post
6 577
 
by Howard_L
Hello, In the nasm compiler syntax code below: (in linux) 1) is it possible to pop a value directly into a variable? . . as shown , popping to register is fine but .... . . In the 'PC Assembly' tutorial I am reading this: . . based on that I think my dd varable should be able to hold the value...
19-Nov-2008 10:45
by Howard_L Go to last post
6 562
 
by _kiwi
Hello. I'm writing an x86 program to: 1. read in a set of positive integers from the user 2. store the integers into an array 3. call a procedure to calculate the average 4. output the average to the screen I'm utilizing 2 files: main.asm ; the main program
12-Nov-2008 17:57
by _kiwi Go to last post
0 528
Smile
by faisalloe
Q1: For the memory location whose physical address is specified by 1256Ah, give the address in segments:offset form for segments 1256h and1240h Q2: If AX=FFFFh and BX= FFFFh the after the execution of the instruction ADD AX, BX.what will be status of the following flags...
02-Nov-2008 10:20
by LuciWiz Go to last post
1 462
 
by SpeedisaVirus
Hello I am working on a small Mips program for my Comp Organization class and I am having an impossible time with advancing an array which I wish to print integers from. I have a loop that terminates at the proper interval however I cannot seem to get the next value in the array. I have tried...
19-Sep-2008 14:17
by SpeedisaVirus Go to last post
2 3,485
 
by Darquenes
Ok I have gotten this one partially down...but What is needed still is to have an interupt sudfunction to create second line moving downward from the orginal point.... This is my code, i cannot seem to get it to run two line running from the same point can someone edit this with notation as to...
16-Jun-2008 14:47
by Darquenes Go to last post
2 909
 
by Darquenes
I found a site to teach me coding and such...and I still cannont get this right. The rle compressed data is 1, 4, 3, 9, 5, 3, 2, 7, 0. The program currently just prints all these values except the terminating zero. When properly decompressed, the output should be: 4 9 9 9 3 3 3 3 3 7 7 yet i...
16-Jun-2008 04:17
by Darquenes Go to last post
0 451
 
by chezzestix
I've been having trouble with this code so I started placing some custom break points in the code*1 until I found the point at which the program would keil over. I put one break point before the "div bh" in the bcd2ascii function and one after and the computer locks up before the second one is...
13-May-2008 23:52
by chezzestix Go to last post
0 424
 
by jackiebb
Hi, I am a beginner at assembly language and want to make a program which displays something on the screen and I can use the arrows on my keyboard to move it around. I have developed code to display the text but am unsure as tohow I go about moving it around the screen. here is my code so...
04-May-2008 08:34
by jackiebb Go to last post
0 496
Question
by lilnaniam
I am a beginner and am trying to display the current date. So far I have this but it just keeps printing Sunday which is the first entry in the "DayName" array. I am trying to get the current date from the system to display. Can anyone direct me in what I am doing wrong. Heres my code...if need to...
27-Apr-2008 17:19
by mwasim22 Go to last post
4 2,360
Exclamation
by aijazbaig1
hello, I have been trying to write a C program and call an assembly routine from within the C program. Im following the C calling convention. I have written the following assembly routine and named the file 'mul64_32.asm' and this file is as shown below, I have a routine which is called...
23-Apr-2008 09:29
by davekw7x Go to last post
3 1,804
Post
by Annon777
I was asked to program using Z80 simulator IDE and its assembler to, subtract a hex number in memory location F101h from a hex number in F100h and stores the value in memory location F202h with the following meaning: i) 01h if the result is negative; ii) 00h if the result is zero; iii) FFh if the...
19-Apr-2008 04:34
by Annon777 Go to last post
0 366
 
by beginnernaive
Okay I just need help and some shed on light how to overcomes this I mean from start..since I'm beginner with assembly...maybe expertise here can help me out by point me the rite path on how to dig it... ok here's the scenario I have to solve A predetermine number is stored in an array named...
14-Apr-2008 23:30
by beginnernaive Go to last post
0 938
 
by martini80
Using Motorola HC68...Designing a game of Pong using potentiometer to control the bat (paddle). The potentiometer's range is between 0-255 and the screens range that it needs to cover is between 0-50... I was trying to multiply/divide using the following to get the correct reading - ADC_input *...
14-Apr-2008 15:57
by martini80 Go to last post
0 364
 
by SENAN
Hey what im tryin to do is set up a timer to overflow every2 ms so this code will sample an ecg wave at 500Hz. Cant get my head around how to do this and any help would be greatly appreciated. Thanks $MOD52
03-Apr-2008 14:43
by davekw7x Go to last post
3 402
 
by TransformedBG
I get a little lost in assembly land, im trying to square any negative numbers that a user put into an array of 10 values... I know i need to use a decrementing counter from MAX till it = 0 and then if its negative square it, any help would be great! // Description: this program will load 10 16...
02-Apr-2008 06:58
by Peter_APIIT Go to last post
3 455
Post
by seraphim14
How can I long string input then convert it to binary assembly language:banana: :banana:
01-Apr-2008 16:19
by seraphim14 Go to last post
0 705
Exclamation
by seraphim14
Can u help me create a simple program that i can understand... a program at converts Binary to Octal and Octal to Binary... thanks... I'm just a beginner in Assembly Language:banana:
30-Mar-2008 17:24
by seraphim14 Go to last post
0 368
 
by moody
Hello! I'm having problems figuring out how to extend the datapath and the blocks used for ble and sgt instructions on MIPS32. After studying a bit I managed to code the instructions for ble and sgt respectively: slt $t0, $s2, $s1 beq $t0, $zero, less_equal ////////////////////////////
30-Mar-2008 09:20
by moody Go to last post
0 297
Post New Thread

Recent GIDBlogAccepted for Ph.D. program by crystalattice

Display Options Moderators
Showing threads 21 to 40 of 67 Moderators : 1
Sorted By Sort Order
From The
LuciWiz  
Forum Tools Search this Forum
Search this Forum :

Advanced Search

New posts New posts More than 15 replies or 150 views Hot thread with new posts
No new posts No new posts More than 15 replies or 150 views Hot thread with no new posts
Closed Thread Thread is closed  
 
Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Forum Jump

Network Sites: GIDNetwork · GIDWebHosts · GIDSearch · Learning Journal by J de Silva, The

All times are GMT -6. The time now is 07:23.


vBulletin, Copyright © 2000 - 2009, Jelsoft Enterprises Ltd.