Linux anchor 4.4.0-210-generic #242-Ubuntu SMP Fri Apr 16 09:57:56 UTC 2021 x86_64
Apache/2.4.18 (Ubuntu)
Server IP : 10.10.100.4 & Your IP : 216.73.216.44
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
lib /
firmware /
carl9170fw /
carlfw /
src /
Delete
Unzip
Name
Size
Permission
Date
Action
ashlsi3.S
3.73
KB
-rw-r--r--
2020-04-14 09:21
cam.c
4.15
KB
-rw-r--r--
2020-04-14 09:21
cmd.c
4.05
KB
-rw-r--r--
2020-04-14 09:21
dma.c
6.96
KB
-rw-r--r--
2020-04-14 09:21
fw.c
3.85
KB
-rw-r--r--
2020-04-14 09:21
gpio.c
1.62
KB
-rw-r--r--
2020-04-14 09:21
hostif.c
4.25
KB
-rw-r--r--
2020-04-14 09:21
main.c
6.1
KB
-rw-r--r--
2020-04-14 09:21
memcpy.S
3.56
KB
-rw-r--r--
2020-04-14 09:21
memset.S
822
B
-rw-r--r--
2020-04-14 09:21
printf.c
2.69
KB
-rw-r--r--
2020-04-14 09:21
reboot.S
245
B
-rw-r--r--
2020-04-14 09:21
rf.c
7.55
KB
-rw-r--r--
2020-04-14 09:21
uart.c
2.07
KB
-rw-r--r--
2020-04-14 09:21
udivsi3_i4i-Os.S
3.34
KB
-rw-r--r--
2020-04-14 09:21
wlan.c
30.63
KB
-rw-r--r--
2020-04-14 09:21
wol.c
8.23
KB
-rw-r--r--
2020-04-14 09:21
Save
Rename
/* $Id: memset.S,v 1.1 2000/04/14 16:49:01 mjd Exp $ * * "memset" implementation of SuperH * * Copyright (C) 1999 Niibe Yutaka * */ /* * void *memset(void *s, int c, size_t n); */ .globl _memset .align 2 _memset: tst r6,r6 bt/s 5f ! if n=0, do nothing add r6,r4 mov #12,r0 cmp/gt r6,r0 bt/s 4f ! if it's too small, set a byte at once mov r4,r0 and #3,r0 cmp/eq #0,r0 bt/s 2f ! It's aligned sub r0,r6 1: dt r0 bf/s 1b mov.b r5,@-r4 2: ! make VVVV extu.b r5,r5 swap.b r5,r0 ! V0 or r0,r5 ! VV swap.w r5,r0 ! VV00 or r0,r5 ! VVVV ! mov r6,r0 shlr2 r0 shlr r0 ! r0 = r6 >> 3 3: dt r0 mov.l r5,@-r4 ! set 8-byte at once bf/s 3b mov.l r5,@-r4 ! mov #7,r0 and r0,r6 tst r6,r6 bt 5f ! fill bytes 4: dt r6 bf/s 4b mov.b r5,@-r4 5: rts mov r4,r0