Skip to search.

Breaking News Visit Yahoo! News for the latest.

×Close this window

nasm-devel · NASM Development Mailing List

The Yahoo! Groups Product Blog

Check it out!

Group Information

  • Members: 266
  • Category: Assembly
  • Founded: Oct 19, 2000
  • Language: English
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Real people. Real stories. See how Yahoo! Groups impacts members worldwide.

Messages

Advanced
Messages Help
Messages 2177 - 2208 of 2213   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand Author Sort by Date ^
2177 harish
harinag99 Send Email
Dec 16, 2004
9:13 am
Is their any 64bit assembler......... either for linux/windows... Please also update me on what is the status of NASM regarding 32bit as well any work on...
2178 Frank Kotler
fbk69 Send Email
Dec 16, 2004
10:31 am
... I think the latest version of Masm has support for 64-bit, Gas does, also take a look at Yasm: http://www.tortall.net/projects/yasm/ ... Check out...
2179 zrsjana Send Email Dec 25, 2004
8:52 pm
how should we display the system's current date and time at the top left of the screen in the format given below. Using the interrupts to get the date and time...
2180 Frank Kotler
fbk69 Send Email
Dec 25, 2004
10:16 pm
... Well, there's this one... ; From: qscgz<pig&#39;s tail>aol<decimal point>com (QSCGZ) ; display the time , 24 bytes ; nasm -f bin -o tinyclok.com tinyclok.asm ...
2181 Jana Zrs
zrsjana Send Email
Dec 27, 2004
6:59 pm
how should we display the system's current date and time at the top left of the screen in the format given below. Using the interrupts to get the date and time...
2182 Frank Kotler
fbk69 Send Email
Jan 3, 2005
12:00 am
... Hi Aitor, I don't think Nasm provides any way to do that. I wish I had a better answer for ya! The only workaround I can think of would be a batch or...
2183 Jana Zrs
zrsjana Send Email
Jan 4, 2005
7:08 pm
hi and how are you friends I'm trying to do that task that I want to create a program that should generate a beep when shift key is pressed and stops the beep...
2184 koool boy
idealistic143 Send Email
Jan 5, 2005
6:06 pm
dea r freinds i need this programe till 6th jan..plzzzzzz send me if u can Write a TSR program “Sound.asm”. This program should generate a beep when shift...
2185 Frank Kotler
fbk69 Send Email
Jan 5, 2005
8:04 pm
... Well, you better get working on it! No one around here has any reason to do your homework for you. Here's a program that beeps the speaker. Maybe it'll...
2186 Frank Kotler
fbk69 Send Email
Jan 20, 2005
11:58 pm
Nasm 0.98.39 is available - but not on SourceForge quite yet... they're having some "transitional difficulties" at the moment. We'll get copies up there as...
2189 chaseaye Send Email Aug 3, 2006
12:34 pm
ALIGN 16 DeFilter_Col_LumaIntra_sse_16: mov ecx, [esp + 4] ; q mov eax, [esp + 8] ; alpha push ebx mov ebx, [esp+4+12] ; beta mov edx, [esp+4+16] ; nWidth ...
2190 Frank Kotler
fbk69 Send Email
Aug 3, 2006
3:07 pm
... * The scale field encodes the multiplier by which the index register is scaled before adding it to the base and displacement: 0 encodes a multiplier of 1,...
2191 chaseaye Send Email Aug 22, 2006
8:26 am
I define a globle variable 'int nWidth " in const.c and declare it " extern int nWidth " in global.h . How to use this globle variable my assembly funcion...
2192 chaseaye Send Email Sep 15, 2006
2:12 am
test eax, eax jne DyNotZero . . . . DyNotZero: . . . It come out short jump is out of range problem . How to tackle this problem ? Best wishes!...
2193 Frank Kotler
fbk69 Send Email
Sep 15, 2006
4:26 am
... jne near DyNotZero or use the "-O" switch. Best, Frank...
2194 chaseaye Send Email Sep 21, 2006
3:19 pm
I establish a project in VC++ 6.0 which is made of a .asm file and a .cpp file. ... Asm file is as follows! /*twice.asm */ BITS 32 %macro cglobal 1 %ifdef...
2195 theowl@...
th30wl Send Email
Sep 21, 2006
7:56 pm
... cglobal _twice ... _twice: that is, you need the decorated names as that's what the C compiler will generate itself. ... is it .c or .cpp? latter will...
2196 Frank Kotler
fbk69 Send Email
Sep 29, 2006
4:30 pm
I have uploaded Jim Carlock's conversion of the Nasm Manual to: http://groups.yahoo.com/group/win32-nasm-users http://sf.net/projects/nasm ...
2197 liudawei713 Send Email Jun 12, 2007
8:21 am
How do it?...
2198 theowl@...
th30wl Send Email
Jun 12, 2007
9:34 am
... nasm doesn't support amd64, yasm does. other than that, you'll have to rewrite your code to take care of the new insns, calling conventions/ABI, etc. also...
2199 Frank Kotler
fbk69 Send Email
Jun 12, 2007
4:09 pm
... [Zeroth: (asm starts with zero) Everyone on this list should know that this list is "dead". It's kept around only for "archival"; purposes. Actual...
2200 theowl@...
th30wl Send Email
Jun 12, 2007
10:41 pm
... hmm, i thought i was and apparently i stopped receiving mails since last september or so... damn ;-). i see you guys have been busy, and of course didn't...
2201 theowl@...
th30wl Send Email
Jun 13, 2007
8:31 am
... oh, nice to know! in early 2005 i had to fake it... so i take it yasm can emit the new section relative relocations (which is what the new SEH tables use)?...
2202 theowl@...
th30wl Send Email
Jun 14, 2007
8:14 pm
... i forget the exact name of the reloc type, but i know i had to fake some entries in the pdata/xdata sections like this: $pdata$main: dd main - main +...
2203 liudawei713 Send Email Jun 15, 2007
6:49 am
... Dear All: Thanks. The problem has solved.I use intrinsic instead of assembly....
2204 theowl@...
th30wl Send Email
Jun 15, 2007
7:39 am
... indeed, early 2005, version 0.4 IIRC. with that said, it was already good enough for writing a production win64 kernel driver in asm, my hats off to you,...
2205 chaseaye Send Email Aug 10, 2007
5:41 am
Hi£¬ We can reserve a space in function stack to declare a variable aligned on 16 -byte: and esp, 0xFFFFFFF0 sub esp, 24 But it is hard to access this kind...
2206 George
driverscience Send Email
Sep 20, 2007
2:51 pm
OK. So, I NASM is useless, unless I can figure out how to add a safe exception handler tag into the object file. Does anyone know how to do this? I cannot...
2207 tihaashik Send Email Feb 16, 2008
9:06 am
Hello,I am new in assembly language and it seems quite difficult for me.but as it is one of the subject I need to learn as a part of syylebus in...
2208 Debbie Wiles
debs3759 Send Email
Feb 16, 2008
4:14 pm
When I first learned to program in assembly language, I went to the local bookshop and got a list of all books they were definitely able to get, then checked...
Messages 2177 - 2208 of 2213   Oldest  |  < Older  |  Newer >  |  Newest
Add to My Yahoo!      XML What's This?

Copyright © 2010 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines NEW - Help