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
 
by Noliving
Hello everyone! I'm currently using pcSpim to run my mips code Basically what my program does is this, you input a string, it counts out the number of characters in that string, it also counts the number of upper case and lower case letters, it also counts the number of spaces and digits. It is...
02-Nov-2009 21:04
by Noliving Go to last post
3 71
 
by megadeath16
I have a thread A in my code. Even though the stack is not full, I sometimes see that I have an invalid value of the stack pointer (the stack pointer value is outside the stack size range for that thread) and see a stack overflow error. Any tips on what are the possible ways this could happen? and...
28-Oct-2009 08:57
by Howard_L Go to last post
1 45
 
by veronicak5678
I am trying to write a subprocedure that will count the number of buts set in a 16bit number, then send that number (bits set) back to the main procedure in AX. The main should display display the number of 1s and determine if the number is even or odd. I am trying to count the 1s by shifting left...
14-Oct-2009 18:01
by veronicak5678 Go to last post
0 60
 
by dhon2407
how to execute / run a batch file in assembly language compiled in tasm???:D
01-Jul-2009 18:40
by mathematician Go to last post
1 735
 
by faisaly
What are the applications of Assembly Language where any high level language becomes insufficient
01-Jul-2009 18:34
by mathematician Go to last post
1 695
 
by kizursoze
Hi guys! I am supposed to finish a skeleton file which disassembles machine code into MIPS instructions. The problem statement follows..... And the six commands are: 814
04-Jun-2009 14:21
by kizursoze Go to last post
1 602
 
by waphon
preposal an Object-oriented solution that is between ourselves of ai technique. first of all,Ai_os needs create some database that is chiefly contain: Main, Noun, Verb, Preposition Create database: Main: Create table columns 3 D memory x-axis, y-axis, z-axis, Class mark Input...
25-May-2009 10:31
by waphon Go to last post
0 250
 
by hira
Hello everyone! I am supposed to write a program of a traffic control system. The statement of the question is as below: The program I have written so far is this: org 000h
08-May-2009 12:30
by hira Go to last post
3 665
 
by theduff
Here is what I have so far. The program receives and echos characters without syscalls. I am trying to add 2 procedures(rev7 and putint) Rev7: Reverses the least significant 7 bits and outputs $s2 Putint: Prints the decimal value of $s2.
02-May-2009 15:09
by theduff Go to last post
2 292
 
Assembly Tutorial? (Multi-page thread  1  2  3  4  5  6 ... Last Page)
by zatora
I am a student in c++ i am taking datastructure I in college. I always was curious about assembly language so i am wondering if anyone can give an easy assembly tutorial ( please would you provide a link to download a compiler because i don't know how to run an asm file). I am also wondering if...
22-Apr-2009 22:19
by zatora Go to last post
76 3,569
 
by Mriswith
Hello all, I'm quite new to programming, and I'm trying to impliment 64-bit subtraction in MIPS. This is how I have things set up. X and Y are 64-bit positive integers, where each is represented as an array of two 32-bit positive integers. That is, X and Y contain the high order 16 bits, and X...
08-Apr-2009 14:41
by davekw7x Go to last post
6 489
 
by king-gideon
I need to change all the negative elements in an array to zero and print out the new array. Example: 1,2,3,-5,6,-7 would become 1,2,3,0,6,0. I tried writing this and it's not working. :( .model small .stack 100h .data DEC_SIZE EQU 5 RES DB DEC_SIZE DUP('0') TEMP DW ? array dw...
07-Apr-2009 16:29
by Howard_L Go to last post
1 195
 
by bonekrusher
Hi, I am working on a homework assignment, which is to add the values of an array. The array is populated by user input. I am able to store the values, but unable to get the sum. My programs crashes (see comments in code). Any help or guidance is appreciated. TITLE Arrays (lab5.asm) INCLUDE...
17-Mar-2009 16:41
by bonekrusher Go to last post
3 263
 
by hell0
Learning assembly...with windows, using tasm5 and tlink for assembling and linking. i am trying to use the Findfirst function (4Eh) of interrupt 21h. Here, I understand that the details of found file are seen in DiscTransferArea. Please...let me know.. Where do or how do I find this elusive...
08-Mar-2009 22:34
by hell0 Go to last post
6 231
 
ASM program (Multi-page thread  1  2  3)
by PaulGarcha
Hey Im currently trying to learn the asm language but im struggling to edit this program to make it do what i want. Atm it just tells me the number of a chosen letter in the string given but i want it to count the number of more than 1 letters if it makes sense Iv tried changing it but it gives...
22-Feb-2009 11:01
by PaulGarcha Go to last post
21 808
 
by bonekrusher
Hi - I am taking an Assemble class and trying to learn hexadecimal representation of decimals. I was hoping someone can explain how to convert -32d to hex I know that 32d is 20h, but how do I invert 0020h then add 1?
08-Feb-2009 16:55
by bonekrusher Go to last post
2 193
 
by minameisricky
; Find the sum and average for trapeziod arrays. area_stats macro areas, len, asum, aave local asum_lp mov cx, len lea bx, areas mov asum, 0 asum_lp: mov ax, word ptr add asum, ax
02-Feb-2009 14:44
by Howard_L Go to last post
2 816
Question
by vikramaditya
Hi, The code snippet below works for Linux 32 bit but does NOT work for Linux 64 bit : movl %edi, -4(%rbp) movq %rsi, -16(%rbp) movl $.LC0, %edi call puts mov $1447909480,%eax mov $10,%ecx
08-Jan-2009 17:49
by Howard_L Go to last post
1 556
Question
by iblink
Hello, I am working on a Microprocessor project. but i am stuck coming up with an assembly code to convert 8 bit binary to hex. can someone please help me with the assembly code:?: .. thank you
16-Dec-2008 19:17
by Howard_L Go to last post
3 634
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 323
Post New Thread

Recent GIDBlogProgramming ebook direct download available by crystalattice

Display Options Moderators
Showing threads 1 to 20 of 66 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 22:10.


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