Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - Keoni29

Pages: 1 ... 155 156 [157] 158 159 ... 168
2341
Other Calculators / Re: Build your own Z80 calculator
« on: September 30, 2011, 04:40:42 am »
Nope you have to select a bank. You cant select all the banks at once

2342
Other Calculators / Re: Build your own Z80 calculator
« on: September 28, 2011, 01:12:18 pm »
Bluescale ftw ;D

2343
Other Calculators / Re: Build your own Z80 calculator
« on: September 28, 2011, 12:15:53 pm »
At least 120x96 px display. 4 level grayscale of course. And sound is very important for games(nah just very cool)

2344
Other / Re: TI-Nterface (my version of labpro)
« on: September 28, 2011, 11:44:25 am »
The system board won't explode. Thats the last thing I'm worried about :)  I have designed an experiment to monitor the state of the linkcables during file transfer.

2345
Other Calculators / Re: Build your own Z80 calculator
« on: September 27, 2011, 06:04:22 pm »
Which is much easier to learn :) You could also base it on the arduino! AVR :)

2346
General Discussion / Re: Post your calcmod music here
« on: September 27, 2011, 12:55:10 pm »
I have modified 2.5 mm nokia earphones. My calc's flash is full of crap, sow I need to back it up cuz it's important crap, but that takes forever so I'd rater use the emulator :)

2347
General Discussion / Re: Post your calcmod music here
« on: September 27, 2011, 12:36:43 pm »
Vid? Mp3? I wanna hear something

2348
Miscellaneous / Re: My mini moral dillema
« on: September 27, 2011, 11:34:42 am »
If you want more ram you have to mod the TI. Dunno how :)

2349
Axe / Re: Pulse width modulation
« on: September 26, 2011, 01:01:38 pm »
I figured that there has to be a 30% duty cycly within a duty cycle to blend the sounds from 3 channels. Can I blend the sounds acurately?

2350
The Axe Parser Project / Re: MIDI To Axe Music Converter
« on: September 25, 2011, 11:42:08 am »
I have 1.0.3

2351
Axe / Re: Some optimization
« on: September 25, 2011, 11:16:12 am »
This part is the main problem:
Code: [Select]
For(r5,0,2
Fix 3
For(r2,0,min(7,L-S-1))
If r5=0
{r2+S+GDB1}>Hex->r3
ElseIf r5=1
{r2+S+GDB2}>Hex->r3
Else
{r2+S+GDB3}>Hex->r3
End
I don't want to repeat it every loop. I tried this, but it didnt work:
Code: [Select]
Lbl SCROL
S+r1-1->S
If S>L
L-1->S
End
If S=L
0->S
End
RecallPic

Text(20,0,"SQ
Text(30,0,"SQ
Text(40,0,"SQ

For(r5,0,min(7,L-S-1)
Text(0,r5*6+20,S+r5->r2>Hex
End

For(r5,0,2
If r5=0
{GDB1}->r4
ElseIf r5=1
{GDB2}->r4
Else
{GDB3}->r4
End
Fix 3
For(r2,0,min(7,L-S-1))
{r4+r2+S}>Hex->r3
Text(r5*10+20,r2*6+10,{r3+2}>Char
Text {r3+3}>Char
Fix 2
End
End
DispgraphClrDraw

2352
Axe / Some optimization
« on: September 25, 2011, 11:00:22 am »
Can you optimize this?

L=Number of rows
S=Scroll height
r1: 0:Scroll Up
    1:Don't scroll, just refresh
    2:Scroll Down



Code: [Select]
Lbl SCROL
S+r1-1->S
If S>L
L-1->S
End
If S=L
0->S
End
RecallPic

Text(20,0,"SQ
Text(30,0,"SQ
Text(40,0,"SQ

For(r5,0,min(7,L-S-1)
Text(0,r5*6+20,S+r5->r2>Hex
End

For(r5,0,2
Fix 3
For(r2,0,min(7,L-S-1))
If r5=0
{r2+S+GDB1}>Hex->r4
ElseIf r5=1
{r2+S+GDB2}>Hex->r4
Else
{r2+S+GDB3}>Hex->r4
End
Text(r5*10+20,r2*6+10,{r3+2}>Char
Text {r3+3}>Char
Fix 2
End
End
DispgraphClrDraw


2353
TI Z80 / Re: TI Real Chipsound engine
« on: September 25, 2011, 10:36:32 am »

This is the sequence editor. You type in the adress of a certain pattern. It needs lots of optimization.

2354
The Axe Parser Project / Re: MIDI To Axe Music Converter
« on: September 25, 2011, 08:53:04 am »
Me 2. I am not even able to run axe on the emulator :(

2355
TI Z80 / Re: TI Real Chipsound engine
« on: September 25, 2011, 08:22:30 am »
What do you mean? I thought of voltage regulation with pwm and wave tables.

Pages: 1 ... 155 156 [157] 158 159 ... 168