flat assembler
Message board for the users of flat assembler.

Index > Projects and Ideas > Programmes and Examples for fasm

Goto page Previous  1, 2, 3, 4  Next
Author
Thread Post new topic Reply to topic
m



Joined: 28 Dec 2006
Posts: 303
Location: in
m 12 Jul 2007, 12:08
Winsock example - II
This one uses threads to handle multiple (10) client requests at a
time!


Description:
Download
Filename: winsock1.asm
Filesize: 2.99 KB
Downloaded: 1187 Time(s)


_________________
Attitude!
Post 12 Jul 2007, 12:08
View user's profile Send private message Reply with quote
Furby



Joined: 01 May 2007
Posts: 74
Location: Kraków, Poland
Furby 12 Jul 2007, 19:17
[m] make the whole website in asm as a CGI :O would be cool and fast :O
Post 12 Jul 2007, 19:17
View user's profile Send private message Reply with quote
m



Joined: 28 Dec 2006
Posts: 303
Location: in
m 13 Jul 2007, 04:11
Wow!
Nice idea!
Post 13 Jul 2007, 04:11
View user's profile Send private message Reply with quote
m



Joined: 28 Dec 2006
Posts: 303
Location: in
m 13 Jul 2007, 10:49
Menu example!


Description: Menu Example
Download
Filename: menu.zip
Filesize: 7.82 KB
Downloaded: 1079 Time(s)


_________________
Attitude!


Last edited by m on 19 Jul 2007, 10:03; edited 1 time in total
Post 13 Jul 2007, 10:49
View user's profile Send private message Reply with quote
dead_body



Joined: 21 Sep 2005
Posts: 187
Location: Ukraine,Kharkov
dead_body 13 Jul 2007, 11:50
m
good. write more Smile

Can write an example of work with proxy?
(to downolad a file using proxy.)

And example with shell?
Post 13 Jul 2007, 11:50
View user's profile Send private message Reply with quote
m



Joined: 28 Dec 2006
Posts: 303
Location: in
m 13 Jul 2007, 12:36
I'll try!


Last edited by m on 17 Jul 2007, 09:25; edited 1 time in total
Post 13 Jul 2007, 12:36
View user's profile Send private message Reply with quote
Furby



Joined: 01 May 2007
Posts: 74
Location: Kraków, Poland
Furby 13 Jul 2007, 16:44
Your using fasm during work ?
Post 13 Jul 2007, 16:44
View user's profile Send private message Reply with quote
mattst88



Joined: 12 May 2006
Posts: 260
mattst88 14 Jul 2007, 01:58
Sorry it took so long to post more AMD64 examples (on first page). Anyway, I've added sample programs for factorial, next power of two, and the leibniz theory of pi. They all call external C functions for input/output. The leibniz program even uses SSE2/3 Smile
Post 14 Jul 2007, 01:58
View user's profile Send private message Visit poster's website Reply with quote
m



Joined: 28 Dec 2006
Posts: 303
Location: in
m 14 Jul 2007, 04:16
I love assembly programming!

_________________
Attitude!


Last edited by m on 17 Jul 2007, 09:26; edited 1 time in total
Post 14 Jul 2007, 04:16
View user's profile Send private message Reply with quote
m



Joined: 28 Dec 2006
Posts: 303
Location: in
m 14 Jul 2007, 04:20
Thanks mattst88! Smile
Post 14 Jul 2007, 04:20
View user's profile Send private message Reply with quote
m



Joined: 28 Dec 2006
Posts: 303
Location: in
m 19 Jul 2007, 14:43
Check for MMX


Description: Check for MMX
Download
Filename: mmx.asm
Filesize: 437 Bytes
Downloaded: 987 Time(s)


_________________
Attitude!
Post 19 Jul 2007, 14:43
View user's profile Send private message Reply with quote
mattst88



Joined: 12 May 2006
Posts: 260
mattst88 19 Jul 2007, 17:38
Furby wrote:
[m] make the whole website in asm as a CGI :O would be cool and fast :O


I can't see how that would be faster than transmitting plain HTML.
Post 19 Jul 2007, 17:38
View user's profile Send private message Visit poster's website Reply with quote
m



Joined: 28 Dec 2006
Posts: 303
Location: in
m 20 Jul 2007, 05:51
Now this board is parsing .php files and sending the results.
This needs php processing (which is slow).
A CGI written in asm can be quite fast!
Post 20 Jul 2007, 05:51
View user's profile Send private message Reply with quote
m



Joined: 28 Dec 2006
Posts: 303
Location: in
m 20 Jul 2007, 13:04
Black is beautiful.


Description: Black
Download
Filename: black.asm
Filesize: 1.16 KB
Downloaded: 1058 Time(s)


_________________
Attitude!
Post 20 Jul 2007, 13:04
View user's profile Send private message Reply with quote
ssp



Joined: 05 Mar 2007
Posts: 36
Location: India
ssp 24 Jul 2007, 12:14
Hi brother!
You was saying that i should leave assembly and you yourself are admitting that 'you love assembly language'

Tel me Why????????????????????????????????
Post 24 Jul 2007, 12:14
View user's profile Send private message Yahoo Messenger Reply with quote
m



Joined: 28 Dec 2006
Posts: 303
Location: in
m 24 Jul 2007, 12:40
That's ok.
You can still program in other languages even if you like assembly.
And for something real, you should not use assembly.
For making toys, assembly is ok.
Post 24 Jul 2007, 12:40
View user's profile Send private message Reply with quote
rugxulo



Joined: 09 Aug 2005
Posts: 2341
Location: Usono (aka, USA)
rugxulo 25 Jul 2007, 06:02
m wrote:
That's ok.
You can still program in other languages even if you like assembly.
And for something real, you should not use assembly.
For making toys, assembly is ok.


You can always use both, even at the same time.

But some things can't be done without some assembly by someone (CPUID, determine if you're in V86 mode, switch to long mode, etc).

We're not suggesting you write all assembly by hand, manually modifying the offsets every time something changes (like Woz did for the Apple 2, sheesh). But assembly is indeed useful, not hugely more difficult than any other language, and there is good support for it for most OSes.

Actually, I like the idea of a lot of HLLs (e.g. Forth, XPL0, FreeBASIC), just haven't really gotten fluent in any yet. Wink
Post 25 Jul 2007, 06:02
View user's profile Send private message Visit poster's website Reply with quote
kohlrak



Joined: 21 Jul 2006
Posts: 1413
Location: Uncle Sam's Pad
kohlrak 25 Jul 2007, 07:08
Why not make something "real" in assembly?
Post 25 Jul 2007, 07:08
View user's profile Send private message Visit poster's website AIM Address Yahoo Messenger MSN Messenger Reply with quote
0.1



Joined: 24 Jul 2007
Posts: 474
Location: India
0.1 25 Jul 2007, 10:44
Do you mean sale-able by "real"?
Post 25 Jul 2007, 10:44
View user's profile Send private message Reply with quote
vador



Joined: 12 Nov 2006
Posts: 68
Location: Madagascar
vador 25 Jul 2007, 11:16
Quote:

For making toys, assembly is ok


For many many many many other things too. Eg: bootloaders
Post 25 Jul 2007, 11:16
View user's profile Send private message Reply with quote
Display posts from previous:
Post new topic Reply to topic

Jump to:  
Goto page Previous  1, 2, 3, 4  Next

< Last Thread | Next Thread >
Forum Rules:
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum
You cannot attach files in this forum
You can download files in this forum


Copyright © 1999-2025, Tomasz Grysztar. Also on GitHub, YouTube.

Website powered by rwasa.