Search found 73 matches

by silver calc
Tue 05 Jun, 2007 8:16 pm
Forum: Latenite, Brass and EarlyMorning
Topic: source code
Replies: 3
Views: 10797

source code

I suppose this may not happen, but any chance of giving out the source code so some one can work on Latenite/Brass/EarlyMorning? I think it's a fabulous thing as it is now (I'm talking about v 1.0.6.0), but there are still a few things missing, mostly with the debugger, but also with various custom ...
by silver calc
Mon 21 May, 2007 2:44 am
Forum: Announce Your Projects
Topic: z80 Heaven
Replies: 15
Views: 16692

Changed, sort of. I added some stuff saying that it is a bad routine, and that to "properly" multiply things, look at the basic math page (which I haven't finished yet). I've also removed the 1st review question asking about the multiplication routine. I will keep the routine though, as it...
by silver calc
Fri 18 May, 2007 9:00 pm
Forum: Announce Your Projects
Topic: z80 Heaven
Replies: 15
Views: 16692

Nevermind, I got my answer. just need to remember to write row before column, row before column...
by silver calc
Thu 17 May, 2007 10:59 pm
Forum: Announce Your Projects
Topic: z80 Heaven
Replies: 15
Views: 16692

Oops, sorry that was my fault. I forget to check the notifications from time to time. As for all that other stuff, I don't know what that is.

You're application has been accepted

question: what do you know about the LCD driver?
by silver calc
Tue 08 May, 2007 4:00 am
Forum: Announce Your Projects
Topic: z80 Heaven
Replies: 15
Views: 16692

Okay, it's been a while. z80-heaven has seen some major revisions and changes. Hope you'll check it out again now that I've added new stuff and changed some other stuff.
by silver calc
Mon 07 May, 2007 9:36 pm
Forum: Latenite, Brass and EarlyMorning
Topic: Bugs
Replies: 72
Views: 104692

Not really a bug, but when you check the help for SUB, it says these are valid instructions: sub a,ixh sub a,ixl sub a,iyh sub a,iyl However, if you don't know these are not valid instructions. Just thought you'd like to know. ps: How's progress going on Latenite/Brass? This project seems to be diei...
by silver calc
Thu 15 Feb, 2007 2:36 am
Forum: Announce Your Projects
Topic: z80 Heaven
Replies: 15
Views: 16692

I've made some major changes to remove some similarities. I've also provided links to the original source of the information. Does this please you somewhat?
by silver calc
Tue 13 Feb, 2007 3:58 am
Forum: Announce Your Projects
Topic: z80 Heaven
Replies: 15
Views: 16692

I know, and I really do plan to change it. The only problem is that I have limited time to work on this project. I've already changed the first 2. However, this site is not just for learning assembly tutorials. I'm also planning on including useful routines, a section on program design, and various ...
by silver calc
Mon 12 Feb, 2007 4:35 am
Forum: Announce Your Projects
Topic: z80 Heaven
Replies: 15
Views: 16692

I took my inspiration from Sigma's 28 days. I did give him credit, and I do hope to expand on his work. However, right now I am pressed for time so I did the best I could in the limited time I had. I did not copy them outright, but did split them up into the appropriate categories similar to his. I ...
by silver calc
Sun 11 Feb, 2007 11:29 pm
Forum: Announce Your Projects
Topic: z80 Heaven
Replies: 15
Views: 16692

z80 Heaven

It's a new project I'm taking on. I'm creating a site for the culmination of information on assembly programming. Here's a link to the site: Link. Please provide feedback and contribute. I hope that this site will become fully functional sometime, but I don't have a lot of spare time to work on it. ...
by silver calc
Sat 10 Feb, 2007 12:23 am
Forum: Programming Help
Topic: [TI ASM] Useful routines.
Replies: 50
Views: 54517

Here are several routines that rely on each other, but can also be called individually (note that I didn't write all of these routines, for example PutS and StrLength were written by TI). This is for all those who are programming for flash applications :twisted: String Length ;_StrLength inline ; ;i...
by silver calc
Tue 06 Feb, 2007 2:58 am
Forum: Latenite, Brass and EarlyMorning
Topic: Brass 2: Dropping TASM backwards compatibility.
Replies: 26
Views: 37646

This looks great... When are you going to release Brass2/LateNite2 for public use?
by silver calc
Tue 23 Jan, 2007 5:23 am
Forum: Programming Help
Topic: [JAVA] help with array of strings
Replies: 9
Views: 6207

nevermind, i figured it out. turns out that initializing arrays in java are different:
C++ way:

Code: Select all

char array[maxsize][5];    //max size is a large number so that the string doesn't run out of space
Java way:

Code: Select all

String[] array = new String[5];
by silver calc
Tue 23 Jan, 2007 12:23 am
Forum: Programming Help
Topic: [JAVA] help with array of strings
Replies: 9
Views: 6207

Huh? What version of java are you using?

In the newer versions there is a scanner class that deals with input. I just want to know how to take user input and put it into a String array.
by silver calc
Mon 22 Jan, 2007 10:33 pm
Forum: Programming Help
Topic: [JAVA] help with array of strings
Replies: 9
Views: 6207

[JAVA] help with array of strings

I've been trying to create an array of strings in Java. Here's my code (only the parts giving me problems): In Class A: public class A{ private String a[10]; public void changeElement(String e, int num){ a[num]=e; } } Here's my application code: import Java.util.Scanner; public class App{ Scanner re...