Removed underscores
This commit is contained in:
parent
10d4013e1c
commit
1eeb7d4eac
1
.gitignore
vendored
1
.gitignore
vendored
@ -1 +1,2 @@
|
|||||||
.fuse_hidden*
|
.fuse_hidden*
|
||||||
|
tests
|
||||||
|
@ -2,8 +2,8 @@ format ELF
|
|||||||
public send as 'dns.send'
|
public send as 'dns.send'
|
||||||
public get_field as 'dns.get_field'
|
public get_field as 'dns.get_field'
|
||||||
|
|
||||||
include '../include/_macros.inc'
|
include '../include/macros.inc'
|
||||||
include '../include/_dns.inc'
|
include '../include/dns.inc'
|
||||||
extrn string.len
|
extrn string.len
|
||||||
|
|
||||||
|
|
||||||
|
@ -1,8 +1,8 @@
|
|||||||
format ELF
|
format ELF
|
||||||
public myip as 'dnstoys.myip'
|
public myip as 'dnstoys.myip'
|
||||||
|
|
||||||
include '../include/_macros.inc'
|
include '../include/macros.inc'
|
||||||
include '../include/_dns.inc'
|
include '../include/dns.inc'
|
||||||
extrn network.get_ip
|
extrn network.get_ip
|
||||||
extrn dns.send
|
extrn dns.send
|
||||||
extrn dns.get_field
|
extrn dns.get_field
|
||||||
|
@ -3,8 +3,8 @@ public open as 'file.open'
|
|||||||
public close as 'file.close'
|
public close as 'file.close'
|
||||||
public content as 'file.content'
|
public content as 'file.content'
|
||||||
|
|
||||||
include '../include/_file.inc'
|
include '../include/file.inc'
|
||||||
include '../include/_macros.inc'
|
include '../include/macros.inc'
|
||||||
extrn string.len
|
extrn string.len
|
||||||
extrn string.copy
|
extrn string.copy
|
||||||
extrn path.filename
|
extrn path.filename
|
||||||
|
@ -2,8 +2,8 @@ format ELF
|
|||||||
public get_ip as 'network.get_ip'
|
public get_ip as 'network.get_ip'
|
||||||
public IP_to_str as 'network.IP_to_str'
|
public IP_to_str as 'network.IP_to_str'
|
||||||
|
|
||||||
include '../include/_macros.inc'
|
include '../include/macros.inc'
|
||||||
include '../include/_dns.inc'
|
include '../include/dns.inc'
|
||||||
extrn dns.send
|
extrn dns.send
|
||||||
extrn dns.get_field
|
extrn dns.get_field
|
||||||
extrn string.len
|
extrn string.len
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
format ELF
|
format ELF
|
||||||
public filename as 'path.filename'
|
public filename as 'path.filename'
|
||||||
|
|
||||||
include '../include/_macros.inc'
|
include '../include/macros.inc'
|
||||||
extrn string.len
|
extrn string.len
|
||||||
|
|
||||||
section '.text' executable
|
section '.text' executable
|
||||||
|
@ -6,7 +6,7 @@ public _bin as 'print.bin'
|
|||||||
public _int as 'print.int'
|
public _int as 'print.int'
|
||||||
public exit
|
public exit
|
||||||
|
|
||||||
include '../include/_macros.inc'
|
include '../include/macros.inc'
|
||||||
|
|
||||||
_new_line equ 10
|
_new_line equ 10
|
||||||
|
|
||||||
|
@ -3,7 +3,7 @@ public copy as 'string.copy'
|
|||||||
public len as 'string.len'
|
public len as 'string.len'
|
||||||
public parse_int as 'string.parse_int'
|
public parse_int as 'string.parse_int'
|
||||||
|
|
||||||
include "../include/_macros.inc"
|
include "../include/macros.inc"
|
||||||
|
|
||||||
section '.string.text' executable
|
section '.string.text' executable
|
||||||
copy:
|
copy:
|
||||||
|
Reference in New Issue
Block a user