real entry - Topic Profile
  Home FAQ Contact Sign in
 
Advanced search
POPULAR GROUPS

more...

Most active groups for topic
aol.neighborhood.nj.jerseycity 815
alt.philosophy 312
comp.lang.fortran 140
rec.arts.anime.fandom 101
comp.lang.forth 91
soc.culture.hongkong 89
alt.magick 69
alt.seduction.fast 48
uk.transport.london 37
microsoft.public.outlook 36
Last week most active authors
No posts for a week
Last active threads
Re: [9fans] assembly loading
Started Iruata Souza · Date: Feb 25, 2008 19:10 · 3 post(s)
populating an allocatable array
Started Wade Ward · Date: Sep 1, 2007 15:46 · 12 post(s)
Last week hot threads
No posts for a week
Latest posts
Re: [9fans] assembly loading
Group: comp.os.plan9 · Group Profile · Search for real entry in comp.os.plan9
Author: Iruata Souza
Date: Feb 26, 2008 06:45

On Tue, Feb 26, 2008 at 11:45 AM, C H Forsyth <forsyth@vitanuova.com> wrote: for anyone wanting to know, it has been resolved thanks to jmk. MOVW $setR30(SB), R30 right in the program beginning sets up the static base register. that should be done by _main, which is why i didn't suggest it. ah, sure. in fact, this is a standalone program, so main is the real entry point for now. iru
Show full article (0.41Kb)
populating an allocatable array
Group: comp.lang.fortran · Group Profile · Search for real entry in comp.lang.fortran
Author: Wade Ward
Date: Sep 1, 2007 15:46

... to familiarize myself with fortran's array capabilites: program matrix1 implicit none real, allocatable :: A(:,:), C(:,:) real, dimension(4) :: B integer :: i, N, M read *, N, M allocate (A(N, N...3 4 5 6 7 8 9 10 11 12 13 14 15 16 }} with real entries. It seems to be one of the big selling points of fortran is that there... N squared that is populated so that the ith entry is i*1.0. Can you shoehorn this into a...
Show full article (1.50Kb)