|
More site info...
|
|
Forum profile page for Assembly on http://www.daniweb.com.
This report page is the aggregated overview from a single forum: Assembly, located on the Message Board at http://www.daniweb.com.
This forum profile page summarizes the general forum statistics such as: Users Activity, Forum Activity, and Top Authors, which are reported in either a table or graph below for a given reporting time period.
Additional forum profile information for "Assembly" on the Message Board at http://www.daniweb.com is also shown in the following ways:
1) Latest Active Threads
2) Hot Threads for Last Week
Warning: These statistics are generated using 'best efforts' and can experience delays and reporting errors at times. Please note that such statistics do not constitute a forum's popularity and/or exact posting volumes at any given reporting period.
|
|
|
|
|
Posting activity on Assembly:
|
|
Week
|
Month
|
3 Months
|
|
Threads:
|
8
|
67
|
186
|
|
Post:
|
11
|
89
|
279
|
|
|
Assembly Posting activity graph:
|
Top authors during last week:
user's latest post:
How to make EXE file from assembly?
Published (2008-11-28 02:02:37)
It would be a lot more useful if you told us the actual name/version of the tools you're using to compile / assemble your programs. Also, the actual details of the hardware you plan to load this onto.
user's latest post:
String Concatenation Help
Published (2008-11-26 04:22:26)
Nevermind. I came up with the solution. If anybody is interested, here is what I got for my answer: Help with Code Tags ( Toggle Plain Text ) TITLE String Concatenate (StrConcat.asm) ; This program concatenates a source ; string to the end of a target string. INCLUDE Irvine32.inc INCLUDE Bsearch.inc STRING_SIZE = 10 Str_concat PROTO, source:PTR BYTE, ; source string target:PTR BYTE ; target string .data targetStr BYTE...
user's latest post:
How to Switch into Protected Mode
Published (2008-11-26 18:00:05)
• • • • Originally Posted by Salem Perhaps you should begin by describing why you need the extra memory. Perhaps we could tell you about an alternative which uses less memory. It's not that I need extra memory. What I want to do is read several bytes of data from the upper end of the 4GB address space, where an MD5 message digest of the bios will have been stored. The intent is to compare the current...
user's latest post:
How to make EXE file from assembly?
Published (2008-11-28 01:02:37)
• • • • Originally Posted by Freaky_Chris When you say you have successfully assembled it, i'm asuming you now have at least one Object file. In which case you need a linker to link the object files together into and exe file. Chris Yes I have an .obj file. Any idea where I can get this linker. thx
user's latest post:
Assembly couting number of 1s in...
Published (2008-11-26 11:22:20)
Hey everyone, been using this site for a lot of my programming needs, but is time I would appreciate some help. Just started assembly language and I am having trouble with a problem. The question: Write a program that will prompt the user to enter a number and then the program will determine the number of 1s that the binary representation of the number contains and display the result. Example: Enter in a number: 2 Number of 1s in this: 1...
user's latest post:
String Concatenation Help
Published (2008-11-26 07:22:26)
;Take a look at this one too: Help with Code Tags ( Toggle Plain Text ) str_cat proc strBase:DWORD, strAdd:DWORD mov edi, strBase mov al, 0 repne scasb dec edi mov esi, strAdd @@: mov al, [esi] mov [edi], al inc esi inc edi test al, al jnz @B ret str_cat endp str_cat proc strBase:DWORD, strAdd:DWORD mov edi, strBase mov al, 0 repne scasb dec edi mov esi, strAdd @@: mov al, [esi] mov [edi], al inc esi inc edi test al, al jnz @B ret str_cat...
|
|
|
|
Latest active threads on Assembly::
Started 6 days, 18 hours ago (2008-11-26 23:59:59)
by resystor
I am new to assembly. I have writtem a program for my Z80. I have successfully assembled it. How do I make it to an EXE file?
Started 1 week, 1 day ago (2008-11-25 13:52:24)
by pdp8
I need to make modifications to BIOS code which runs at PowerUp or Boot time and I need to access more than the lower 1,048,576 bytes of memory. Is it possible to switch into Protected Mode at this time in order to access more memory? If so, how? What is the instruction sequence? Alternatively, can anyone suggest a different approach? Thanks, Bob.
Started 1 week ago (2008-11-26 11:22:20)
by YouKnowIt
Hey everyone, been using this site for a lot of my programming needs, but is time I would appreciate some help. Just started assembly language and I am having trouble with a problem. The question: Write a program that will prompt the user to enter a number and then the program will determine the number of 1s that the binary representation of the number contains and display the result....
Started 1 week, 1 day ago (2008-11-25 00:29:20)
by gothicmisery85
I am working on a program, and I can't figure out what I'm doing wrong. Any help would be appreciated. Here is what I have to do: Write a procedure named St_concat that concatenates a source string to the end of a target string. Sufficient space must exist in the target string to accommodate the new characters. Pass pointers to the source and target strings. Here is a sample call:...
Started 1 week, 3 days ago (2008-11-23 10:10:54)
by ombadboy
Can someone suggest me a method to convert a floating point number into binary using assembly? for example 5.5 would be 000..101.1 but how would you go on about this in assembly?
Started 1 year, 8 months ago (2007-03-21 00:00:00)
by bastek
Hi, I have a simple code written in MIPS assembly that reads an integer from a user and displays it to the screen. The code is as follows: main: la $a0, in_msg li $v0, 4 syscall li $v0, 5 syscall move $t0, $v0 la $a0, out_msg li $v0, 4 syscall move $a0, $t0 li...
Started 2 years, 11 months ago (2005-12-27 00:00:00)
by ZOverLord
************************************************** ****************************************** The Programs and Files included are Copyright 2005, by ZOverLord This is a Proof Of Concept for Educational Purposes ONLY! Notes: This program is 4K big, as in 4,096 bytes and can do ANYTHING other Key-Loggers claim, this is Version 1.0, a Stealth version will be ...
Started 1 week, 5 days ago (2008-11-21 03:54:27)
by asmNewbie
I'm writing a program that can lock the keyboard. I patch into ISR 9(the keyboard interrupt) and manipulate the head and tai pointers. It work fine , but there're something I don't understand: -It seems that I cannot use int 21h when patching into an interrupt -When I run my program from Command Prompt , it works so the CMD window doesn't receive any keystrokes , but anything outside ...
Started 2 weeks ago (2008-11-19 13:44:29)
by laguna92651
I'm writing a program to output a stair step waveform from VoutA. How do I tell PORTP to output 2 volts? Help with Code Tags ( Toggle Plain Text ) #include "d:\miniide\hc12.inc" org $1000 ldaa #$FF staa DDRP ; configure PORTP for output ldaa #$6F staa DDRCAN ; configure PCAN6..PCAN5 for output bclr PORTCAN,$20 ; select VOUTA output xx ...
Started 1 week, 6 days ago (2008-11-19 19:44:34)
by shadyking
Hi. I tried to solve the below problems, but couldnt get them right, could you please help me out how to start or explain on how to solve the problems below. thank you Write an assembly program to copy data from table1 at location 1100 to table 2 at location 1114. both have 20 values, start program at $4000 write program to swap data between table1 and table 2 from above....
|
|
Hot threads for last week on Assembly::
Started 1 week, 1 day ago (2008-11-25 00:29:20)
by gothicmisery85
I am working on a program, and I can't figure out what I'm doing wrong. Any help would be appreciated. Here is what I have to do: Write a procedure named St_concat that concatenates a source string to the end of a target string. Sufficient space must exist in the target string to accommodate the new characters. Pass pointers to the source and target strings. Here is a sample call:...
Started 1 week, 1 day ago (2008-11-25 13:52:24)
by pdp8
I need to make modifications to BIOS code which runs at PowerUp or Boot time and I need to access more than the lower 1,048,576 bytes of memory. Is it possible to switch into Protected Mode at this time in order to access more memory? If so, how? What is the instruction sequence? Alternatively, can anyone suggest a different approach? Thanks, Bob.
Started 6 days, 18 hours ago (2008-11-26 23:59:59)
by resystor
I am new to assembly. I have writtem a program for my Z80. I have successfully assembled it. How do I make it to an EXE file?
Started 1 week, 3 days ago (2008-11-23 10:10:54)
by ombadboy
Can someone suggest me a method to convert a floating point number into binary using assembly? for example 5.5 would be 000..101.1 but how would you go on about this in assembly?
Started 1 week ago (2008-11-26 11:22:20)
by YouKnowIt
Hey everyone, been using this site for a lot of my programming needs, but is time I would appreciate some help. Just started assembly language and I am having trouble with a problem. The question: Write a program that will prompt the user to enter a number and then the program will determine the number of 1s that the binary representation of the number contains and display the result....
|
|