• Please stop embedding files/images from Discord. Discord has anti-hotlinking logic in place that breaks links to Discord hosted files and images when linked to from anywhere outside of Discord. There are a multitude of file/image hosting sites you can use instead.

    (more info here)

New profile posts

You feel your skins crawling on your back.
Xemous
Xemous
You feel your back CRAWLING IN MY SKIIIIIIIIIN
Jpzarde
Jpzarde
You feel your sins CRAAAAWWWLING IIIIIIIN MY CRAAAAAWWWL
Xemous
Xemous
THESE CRAAAAAAWLS THEY WILL NOT CCCCCRRRRRRAAAAAAAAAAAWWWWWWWWLLLLLLL
Today I discovered Alberto González, a guy who made some really awesome music for the Gameboy and NES.
Mint
Mint
Yeah, already knew that by the description.
Safusaka
Safusaka
He usually goes by McAlby. I recommend Metal Masters and Smurf's Nightmare which are both for GameBoy.
Mint
Mint
I just noticed he made a lot of music for video games that are based on non-video game series.
when putting Arguments into EAX using TSC by calling 421900, does only 4 bytes get actually put into EAX to make 4 digits or does the whole Dword get stuffed into eax and only the last 4 bytes get read under normal circumstances? if it is the second how would you go about getting the full Dword into eax?
Noxid
Noxid
ok look. one, there's no need to be snippy. I'm trying to guide you towards the right answer because it's better for you to figure it out than for me to just tell you how to do it.
and two, yeah? maybe? I mean, the core concepts carry over no matter what language you're using but C is probably both the closest to ASM you'll find, and the lingua franca of psuedocode. Having at least a basic understanding of programming concepts will help you make sense of things a lot easier. We need to be able to at least speak the same language to communicate effectively.

So if I were to make a recommendation then yes, take a break from the ASM. Read some beginner's C/C++, when I was starting out I carried a copy of Stroustroup's C++ book with me to work for months and tried to figure out a bit every day. You won't get anywhere by just bashing your head against it alone.
BLink
BLink
Sorry, That was suppose to come across as being frustrated at myself for being naive, not anythingaggressivee toward you.

I know you're trying to teach me to teach myself, if you give a man a fish you feed him for a day, but if you teach him to fish you feed him for a lifetime. I'm not a stranger to your teaching methods, like how you has me dissassemble some raw 86 code to find out how stuff works myself.

I'll do that, I've been procrastination learning C for a month now...It's time to start and get some stuff done.
BLink
BLink
Alright I bought a physical copy of the book, it will arrive in a few days...

In the meantime:

0 = 00
1 = 01
2 = 02
3 = 03
4 = 04
5 = 05
6 = 06
7 = 07
8 = 08
9 = 09
: = 0A
; = 0B
< = 0C
= = 0D
> = 0E
? = 0F

so

ASCII arg in TSC is
0042 = 00000402
2666 = 02060606

Call ASCII to num
EAX = 00000402

imul ah, ah, 10 ;ah = 40
add al, ah ;al = 42

mov [variable] al

Call ASCII to num
EAX = 02060606

imul ah, ah, 10 ;ah = 60
add al, ah ;al = 66
mov dh [variable] ;EDX = 00004200
shl edx 2 ;EDX = 00420000
mov dl, al ;EDX = 00420066
shr eax, 4 ;ah = 02 EAX = 00000206
imul ah, ah, 10 ;ah = 20
add al, ah ;al = 26
mov dh, al ;EDX = 00422666

mov [edx], TSC arg

I had to think about that one for a little while while taking a shower. also I'm not sure if i used SHL and SHR the right way...
If only OrgMaker wasn't silenced while testing out a mod…
SuperJaws100
SuperJaws100
It would make song testing so much easier.
q3hardcore
q3hardcore
Why's that?
Bionicobot
Bionicobot
You get the feel of the org while playing the level. There's a way around the silence thing that I figured out, but I forgot how to do it...
Tfw you can't share 3ds friend codes on Miiverse but can friend random people on it and voice chat on Smash for Wii U.
At the beginning of the school year I joined a team, Forensics (basically Speech), which has a dozen events such as Poetry Reading that people specialize and compete in. I'm focusing on Radio for now, and I wasn't expecting it to take so much of my time - 2.5 more hours at school from Tuesday to Thursday, preparing a script Friday, competing from 6 AM to 5:30 PM on Saturday. This is new to me! :3
VinylCheese
VinylCheese
That sounds interesting!
Jpzarde
Jpzarde
Like da man says, very interesting stuff. Always nice to be part of a team, and radio sounds coolarooni, I think it's fitting for you.
Polaris
Polaris
Thank you both, you're much too kind ^_^;

I've got a decent voice for it, but (sadly?) there's more to Radio Speaking than simply belting out my best news reporter impression. It's a little disappointing to be doing poorly in competition so far, but it's also fun to see that I've gotten a little better even in the three that we've participated in!
Nearly everyone who plays Mannpower on TF2 is incapable of winning. The only ones who are remotely able to do anything are me (not even trying to be egotistical,) and everyone else on the team opposite of my own.
Aar
Aar
Mannpower sounded like a good idea but it really wasn't
Jpzarde
Jpzarde
At least we got grappling hooks, those are an absolute joy to use.
Aar
Aar
I really don't like that idea
One thing cause im new... how da fuq do u upload mods. Please i fudgging need 2 no.
Mint
Mint
Get any file uploading service like Dropbox, as you can't upload them to here. Then make a thread about it in the showcase subforum.
LanHikariDS
LanHikariDS
And, this should go without saying, but the mod has to be in a .zip file.
Back
Top