Jump to content
View in the app

A better way to browse. Learn more.

Tuts 4 You

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

ASM program

Featured Replies

Posted

Where can I download an ASM compiler(I know its not exactly a compiler but for lack of a better word...)?

It's called assembler :D

There are various different assemblers out there with different syntax and support for OSes.

The most common one around Windows is MASM (Microsoft assembler) - http://www.masm32.com/

There are also TASM, NASM, HLA, etc. They come with slight differences in their syntax but that's about it. Might wanna look at IDEs, available tutorials etc to make up your mind :D

For a start, MASM is the most decent one imho :)

  • Author
It's called assembler :D

There are various different assemblers out there with different syntax and support for OSes.

The most common one around Windows is MASM (Microsoft assembler) - http://www.masm32.com/

There are also TASM, NASM, HLA, etc. They come with slight differences in their syntax but that's about it. Might wanna look at IDEs, available tutorials etc to make up your mind :D

For a start, MASM is the most decent one imho :)

Thanks..

Killboy '

;) thankyou for this tip!

best IDE is notepad2 :P

perfect editor, just one flaw, no url highlight.

http://www.flos-freeware.ch/notepad2.html

Edited by human

I personally prefer radasm. Nice IDE with preconfigured languages like masm32/nasm/etc.

I personally prefer radasm. Nice IDE with preconfigured languages like masm32/nasm/etc.

I too think so

winasm studio is my choice

for quick stuff i use EditPlus and masm syntax highlight

Edited by donny

notepad2 would have been even better if only it had tabs

notepad++ is too bloated

I use Notepad++ - works great for me.... can't arsed with fancy IDEs myself but thats just personal preference.

of course MASM is a good choice. it has very usefull functions and macros which makes asm coding very comfortable like coding in c.

for example the usage of strings is very easy now with new MASM version:

old style:
.data
message db "hello world",0
caption db "wuha",0
.code
invoke MessageBox,hwnd,addr message,addr caption,MB_OKnew style:
fn MessageBox,hwnd,"hello world","wuha",MB_OKyou can use also c-style strings:
fnc MessageBox,hwnd,"firstline \n nextline",0,MB_OK

i use UEStudio (same as Ultraedit) for coding in asm. you can configure the colors for syntaxhilighting (and i love my own colors). for creating dialogs i use the good old resourcehacker. and for compiling a simple batch script.

i tried to swith to Radasm. it looks very nice and has much usefull functions. but i had much problems creating a simple window application.There are problems with the reource_id's in the dialogbox. so i have no trust in radasm since this.

Wow!!!

This new style - super!

Create an account or sign in to comment

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.