Programming V3 MEGATHREAD [Because we need one]

Author Topic: Programming V3 MEGATHREAD [Because we need one]  (Read 6611 times)

Because of this, I made a crypto that I call Johnson8.
not sure why.

Nonono
Use rsa/ecc to send an aes key then use aes to encrypt messages

this is why you don't implement your own crypto
You have heard that before, haven't you?

but i want to :(
if there were no struggles to it then i wouldnt find interest in programming

Because of this, I made a crypto that I call Johnson8.
not sure why.
I'd like to see this please

Nonono
Use rsa/ecc to send an aes key then use aes to encrypt messages
ill give it a try although i have made a symmetrical system before, i dont think its AES but close to cesar cipher with a rotating cycle so no two letters are encrypted in the same manner

I'd like to see this please

It's just a lame text shift in JavaScript.

Have any of you guys ever tried to write a CPU emulator? It's forgetin' tiring, not particularly difficult but it's just really really repetitive..

Code: [Select]
case SWAPr_b:
char tr = regB;
regB = mmu.readByte((regH<<8)+regL);
mmu.writeByte((regH<<8)+regL, tr);
regM = 4;
regT = 16;
break;
case SWAPr_c:
char tr = regC;
regC = mmu.readByte((regH<<8)+regL);
mmu.writeByte((regH<<8)+regL, tr);
regM = 4;
regT = 16;
break;
case SWAPr_d:
char tr = regD;
regD = mmu.readByte((regH<<8)+regL);
mmu.writeByte((regH<<8)+regL, tr);
regM = 4;
regT = 16;
break;
case SWAPr_e:
char tr = regE;
regE = mmu.readByte((regH<<8)+regL);
mmu.writeByte((regH<<8)+regL, tr);
regM = 4;
regT = 16;
break;
case SWAPr_h:
char tr = regH;
regH = mmu.readByte((regH<<8)+regL);
mmu.writeByte((regH<<8)+regL, tr);
regM = 4;
regT = 16;
break;
case SWAPr_l:
char tr = regL;
regL = mmu.readByte((regH<<8)+regL);
mmu.writeByte((regH<<8)+regL, tr);
regM = 4;
regT = 16;
break;
case SWAPr_a:
char tr = regL;
regL = mmu.readByte((regH<<8)+regL);
mmu.writeByte((regH<<8)+regL);
regM = 4;
regT = 16;
break;

I know this question has been asked a million times, but where can I learn this

Have any of you guys ever tried to write a CPU emulator? It's forgetin' tiring, not particularly difficult but it's just really really repetitive..
I know for a fact my friend has tried. Not sure how far he got, but due to an understanding of his personality/work ethic I don't think it was very far

I know this question has been asked a million times, but where can I learn this
uhh

learn what

uhh

learn what
idk, I wanted to look into learning python

Have any of you guys ever tried to write a CPU emulator? It's forgetin' tiring, not particularly difficult but it's just really really repetitive..

nope because it gets ugly fast

I know this question has been asked a million times, but where can I learn this
just do it, thats all
need anything, you can google step by step on how to do something
i never learned by books or teacher, just googled what i needed then modified or used a similar concept and tada

Ok two questions

Does anyone know how to successfully connect Allegro to Code::Blocks C++ compiler because after trying for about 4 or 5 years... you can guess the rest.

If anyone has Petit Computer for Nintendo DSi or 3DS feel free to my websites forum, (see my profile)

Ok two questions

Does anyone know how to successfully connect Allegro to Code::Blocks C++ compiler because after trying for about 4 or 5 years... you can guess the rest.

If anyone has Petit Computer for Nintendo DSi or 3DS feel free to my websites forum, (see my profile)
http://wiki.allegro.cc/index.php?title=Code::Blocks