i just realized that we're supposed to 'introduce' our bloggers lol
so....
here goes:
since this is kinda 'the end',
kisses and hugs to you all out there who took the time to visit our blog xoxo
it has been an...experience ;p
i just realized that we're supposed to 'introduce' our bloggers lol
so....
here goes:
Posted by sabrinasays at 05:00 0 comments
example: the GeForce6600 GT |
Posted by sabrinasays at 04:26 0 comments
Labels: parallel processing
Service
|
System Call Code
|
Arguments
|
Result
|
print_int
|
1
|
$a0 = integer
|
|
print_float
|
2
|
$f12 = float
|
|
print_double
|
3
|
$f12 = double
|
|
print_string
|
4
|
$a0 = string
|
|
read_int
|
5
|
integer (in $v0)
|
|
read_float
|
6
|
float (in $f0)
|
|
read_double
|
7
|
double (in $f0)
|
|
read_string
|
8
|
$a0 = buffer, $a1 = length
|
|
sbrk
|
9
|
$a0 = amount
|
address (in $v0)
|
exit
|
10
|
||
print_character
|
11
|
$a0 = character
|
|
read_character
|
12
|
character (in $v0)
|
|
open
|
13
|
$a0 = filename,
|
file descriptor
(in $v0)
|
$a1 = flags, $a2 = mode
|
|||
read
|
14
|
$a0 = file descriptor,
|
bytes read
(in $v0)
|
$a1 = buffer, $a2 = count
|
|||
write
|
15
|
$a0 = file descriptor,
|
bytes written
(in $v0)
|
$a1 = buffer, $a2 = count
|
|||
close
|
16
|
$a0 = file descriptor
|
0 (in $v0)
|
exit2
|
17
|
$a0 = value
|
Posted by Unknown at 08:50 0 comments
Labels: Computer Language
Logical
|
and
|
and
$1,$2,$3
|
$1
= $2 & $3
|
3
register operands; Logical AND
|
or
|
or
$1,$2,$3
|
$1
= $2 | $3
|
3
register operands; Logical OR
|
|
not
|
nor
$1,$1,$0
|
0=1/
1=0
|
convert
1 to 0
convert
0 to 1
|
|
and
immediate
|
andi $1,$0,100
|
$1
= 100
|
Logical
AND register, constant
|
|
or
immediate
|
ori
$1,$0,100
|
$1
=100
|
Logical
OR register, constant
|
|
shift
left logical
|
sll
$1,$2,10
|
$1
= $2 << 10
|
Shift
left by constant
|
|
shift
right logical
|
srl
$1,$2,10
|
$1
= $2 >> 10
|
Shift
right by constant
|
Posted by Unknown at 07:53 0 comments
Labels: Computer Language
Posted by sabrinasays at 07:28 0 comments
Labels: parallel processing