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 - ben_g

Pages: 1 ... 48 49 [50] 51 52 ... 71
736
Humour and Jokes / Re: Let us make some random programs
« on: October 06, 2011, 03:59:54 pm »
I don't think that's allowed.
too late  >:D

737
News / Re: OmnomIRC Downtime
« on: October 06, 2011, 03:55:56 pm »
Maybe nobody was on?
I use efnet.net now. Maybe you can too?
Ok, I'm trying.

EDIT: connected. Still I get no responce and I feel like nobody recieves it.

738
Humour and Jokes / Re: Let us make some random programs
« on: October 06, 2011, 03:53:50 pm »
Code: [Select]
prgmTHEGAME
::"YOU JUST LOST THE GAME

:Stop:"HAMMER TIME
"get this one out

:ClrHome
:1->A
:{4,7,5,8,5,6,5,7,5,9,4,8,4,9}->LGAME
:"THEGAME"->Str1
:DelVarS8->B
:For (B,1,7)
:2B->B
:Goto 4
:Lbl 4
:Goto 5
:Lbl 5:Goto 5:"This line will freeze the calc untill you press on  >:D

739
News / Re: OmnomIRC Downtime
« on: October 06, 2011, 03:50:12 pm »
How can I get Y chat (the program the x chat 2 link links to) to connect to omnimaga?

I got this:
Quote
* Loaded log from Thu Oct 06 21:05:28 2011
 
* U praat nu op #omnimaga
* Onderwerp voor #omnimaga is: Omnimaga.org|Friendship Unity Caring Kindness|Rules http://omniurl.tk/r-en |Logs http://omniurl.tk/en |French #omnimaga-fr |Spam #omnimaga-spam on EFnet/OmniNET
* Onderwerp voor #omnimaga is ingesteld door Netham45 op Mon May 30 09:44:07 2011
<Ben_g> Am I connected now?
But nobody replied, so I don't think it actually joined.

740
ASM / Re: 16 by 24 bit signed addition
« on: October 04, 2011, 04:06:30 pm »
This are some of the results it gets, compared to those the windows calculator gets. The results from the calculator are formated as actual HEX numbers (Big endian), while the results from the routine are like they are stored to the memory(little endian). I've found 3 cases on which the result from the routine doesn't match those from the calculator.
Code: [Select]
   Results from calculator
-----------------------------

00 19 00    00 00    00 19 00
00 19 00    01 8C    00 1A 8C

00 19 FF    01 80    00 1B 7F
00 1A 8C    01 8C    00 1C 18


00 49 00    FE 80    01 47 80
00 49 00    00 00    00 49 00

00 47 80    FE 80    01 46 00
00 49 00    2F 00    00 78 00


    Results from routine
-----------------------------
  In 1       In2       Out

00 19 00    00 00    00 19 00
00 19 00    8C 01    8C 1A 00

FF 19 00    80 01    7F 1B 00
8C 1A 00    8C 01    18 1C 00


00 49 00    80 FE    40 47 00   <- Wrong?
00 49 00    00 00    00 49 00

80 47 00    80 FE    00 46 00   <- Wrong?
00 49 00    00 2F    00 49 00   <- Wrong?
Is there a problem with the routine or did I calculate the numbers wrong?

741
TI Z80 / Re: GlassOS
« on: October 04, 2011, 02:43:26 pm »
GlassOS (technically GlaßOS, but for ease of typing...) is an OS written for the ti84pse.
Will it also be supported on a 'normal' 84+?

742
ASM / Re: 16 by 24 bit signed addition
« on: October 02, 2011, 04:23:31 pm »
It's difficoult to calculate what walues are passed to the routine by the screenshot, so as logn as i can't get wabbitemu to debug, I can't tell which arguments are passed to it.

743
ASM / Re: 16 by 24 bit signed addition
« on: October 02, 2011, 04:11:34 pm »
It still gives the exact same result :(

744
ASM / Re: 16 by 24 bit signed addition
« on: October 02, 2011, 03:56:39 pm »
But if xeda's code only works for unsigned numbers, and it gave the same result as mine, does that mean if I'm just handeling the sign incorrectely? If so, then what am I doing wrong with the sign?

EDIT: I'm also not entirely sure if it's the addition that causes the problem, but as the rest of the code is almost simular to my previous triangle drawing routine (16bit and 8bit), eccept for the addition and the storing to variables.

This is what it does:

I made the two triangles 50% transparent so you can see both of them well. They should form a rectangle, but my triangle drawing routine fails on one of them.

745
ASM / Re: 16 by 24 bit signed addition
« on: October 02, 2011, 03:52:13 pm »
That also gives the same result...

BTW: I do save the lower 16 bits. I just forgot to copy the last line, which is :
Code: [Select]
ld (tx2), hl
EDIT: double ninja'd O.O I should try to type faster...

746
ASM / Re: 16 by 24 bit signed addition
« on: October 02, 2011, 03:40:31 pm »
Thanks, but it still doesn't fully work. (It gets the same results, actually.

747
ASM / 16 by 24 bit signed addition
« on: October 02, 2011, 03:24:44 pm »
Hi,

I'm trying to do a 16 by 24bit signed addition for my z80 program. Now I have this code:
Code: [Select]
  ld hl,(var1)
  ld de, (var2)
  ld a, h
  rla
  sbc a,a
  add hl, de
  ld b, a
  ld a, (var1+2)
  adc a, b
  ld (var1+2), a
It seems to work in some situations, but it also sometimes gives other results.
What am I doing wrong?

btw: var1 is the 24bit var, var2 the 16bit one. I haven't fully written this routine, a part of it comes from a load 16bit to 24bit routine from calc84maniac.

many thanks in avantage.

748
Other Calculators / Re: light for 84
« on: October 02, 2011, 02:00:27 pm »
when you use the USB8x BASIC interface, it'll stay on untill you let th usb port do something else.

749
Other Calculators / Re: light for 84
« on: October 02, 2011, 01:49:48 pm »
use an USB flashlight and USB8x.

750
OmnomIRC Development / Re: chat does not work in ie
« on: September 30, 2011, 06:35:19 pm »
Thanks. I also found out where it had hidden itself, so I can easly delete it.

Now, let's go back on topic.

Pages: 1 ... 48 49 [50] 51 52 ... 71