Skip to content
MPGHThe Dark Arts
/
RegisterLog in
Forum
Community
What's NewLatest posts across the boardTrendingHottest threads right nowSubscribedThreads you follow
Discussion
GeneralIntroductionsEntertainmentDebate FortFlaming & Rage
Board
News & AnnouncementsMPGH TimesSuggestions & HelpGiveaways
More Sections
Art & Graphic DesignProgrammingHackingCryptocurrency
Hacks & Cheats
Games
ValorantCS2 / CS:GOCall of Duty / WarzoneFortniteApex LegendsEscape From Tarkov
+14 moreLeague of LegendsGTA VMinecraftRustROTMGBattlefieldTroveBattleOnCombat ArmsCrossFireBlackshotRuneScapeDayZDead by Daylight
Resources
Game Hacking TutorialsReverse EngineeringGeneral Game HackingAnti-CheatConsole Game Hacking
Tools
Game Hacking ToolsTrainers & CheatsHack/Release NewsNew
Submit a release →Share your cheat, tool, or config with the community.
AINEW
AI Tools
General & DiscussionPrompt EngineeringLLM JailbreaksHotAI Agents & AutomationLocal / Open Models
AI × Gaming
AI Aimbots & VisionML Anti-CheatGame Bots & Automation
Create
AI Coding / Vibe CodingAI Art & MediaAI Voice & TTS
The AI frontier →Where game hacking meets modern machine learning. Jump in.
Marketplace
Buy & Sell
SellingBuyingTradingUser Services
Trust & Safety
Middleman LoungeMarketplace TalkVouch Copy Profiles
Money
Cryptocurrency TalkCurrency ExchangeWork & Job Offers
Start selling →List accounts, services, and goods. Use the middleman to trade safe.
MPGH The Dark Arts

A community for offensive security research, reverse engineering, and AI.

Community

ForumMarketplaceSearch

Account

RegisterLog in

Legal

Privacy PolicyForum RulesHelp & FAQ
© 2026 MPGH · All rights reserved.Built by the community, for the community. For educational purposes onlyContent is shared for security research and education — we don't condone illegal use. You're responsible for complying with applicable laws. Use at your own risk.
Home › Forum › Programming › Other Programming › Assembly › Setting Up The Compiler =F

Setting Up The Compiler =F

Posts 1–4 of 4 · Page 1 of 1
SO
Someguytwo
I Need Help Setting Up The Compiler =F
I have everything set up, and I used the following test code to assure it works :

.386
.model flat,stdcall
option casemap:none
include C:\ASM\masm32\include\windows.inc
include C:\ASM\masm32\include\kernel32.inc
includelib C:\ASM\masm32\lib\kernel32.lib
include C:\ASM\masm32\include\user32.inc
includelib C:\ASM\masm32\lib\user32.lib

.data
MsgBoxCaption db "Test",0
MsgBoxText db "Test",0

.code
start:
invoke MessageBox, NULL, addr MsgBoxText, addr MsgBoxCaption, MB_OK
invoke ExitProcess, NULL
end start
It compiles, but it doesn't execute.. I'm using 'WinAsm Studios" with masm32 dirs. Yes I configured it to use the masm32 dirs,bin,includes,etc..

*edit*
Okay, I just located the EXE, and now its "Not A Valid Win32 Application."
The project type is standard EXE.
#1 · edited 18y ago · 18y ago
AW
awanaghana
Tasm is better
#2 · 18y ago
SO
Someguytwo
Well, thanks for answering my question there.

*edit*

Okay, WHAT THE FUCK. I can't find a compiler, I just tried FASM and it won't compiler jack shit, because its an 'Invalid argument'. What the fuck do I have to do. Jesus Christ, and nothing has a fucking GUI.
#3 · edited 18y ago · 18y ago
Jakor
Jakor
First, it's an assembler. second use radasm by visual assembler, third make the includes relative to the drive letter. "try adding "\ASM" before the "\masm32\inc..." like I did in the first line. If this doesn't work, re-instal masm to the C:\masm32 directory instead. the documentation in masm states that it is almost necessary to install to the root directory.

Post again if you have more questions or neither of those work.

Code:
include ASM\masm32\include\windows.inc
include \masm32\include\masm32.inc
include \masm32\include\user32.inc
include \masm32\include\kernel32.inc
include \masm32\include\debug.inc
includelib \masm32\lib\masm32.lib
includelib \masm32\lib\user32.lib
includelib \masm32\lib\kernel32.lib
includelib \masm32\lib\debug.lib


Quote Originally Posted by awanaghana View Post
Tasm is better
NASM>MASM>rest =p
#4 · 18y ago
Posts 1–4 of 4 · Page 1 of 1

Post a Reply

Similar Threads

  • What is the best compiler for C++?By ip_ban in C++/C Programming
    2Last post 18y ago
  • Post the scariest shit you have seen!By arunforce in General
    26Last post 19y ago
  • I Always Wondered What Dutch Kids Sung In The ShowerBy RebornAce in General
    6Last post 17y ago
  • Does the Firefly skin Suck?By Dave84311 in General
    11Last post 19y ago
  • Plz I Want Maple Global Hacks And Where Do I Get Game Engine 2 Make The Hacks Work???By mattinthehat in MapleStory Hacks, Cheats & Trainers
    3Last post 20y ago

Tags for this Thread

#compiler#setting