]> git.sur5r.net Git - cc65/commitdiff
Removed GEOS rand.s implementation in favor of random number generator from common...
authorizydorst <izydorst@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Sun, 10 Nov 2002 15:35:10 +0000 (15:35 +0000)
committerizydorst <izydorst@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Sun, 10 Nov 2002 15:35:10 +0000 (15:35 +0000)
git-svn-id: svn://svn.cc65.org/cc65/trunk@1498 b7a2c559-68d2-44c3-8de9-860c34a00d81

libsrc/geos/common/Makefile
libsrc/geos/common/rand.s [deleted file]

index a7f9d5ddd286771325e56de05ff173f9b8a1dbea..45eab4c4e059b11f4cef02a83dea61ba7baaae98 100644 (file)
@@ -11,7 +11,7 @@
        @$(AS) -o $@ $(AFLAGS) $<
 
 C_OBJS = _afailed.o abort.o perror.o
-S_OBJS = copydata.o memcpy.o memset.o rand.o
+S_OBJS = copydata.o memcpy.o memset.o
 
 all: $(C_OBJS) $(S_OBJS)
 
diff --git a/libsrc/geos/common/rand.s b/libsrc/geos/common/rand.s
deleted file mode 100644 (file)
index ad2db18..0000000
+++ /dev/null
@@ -1,20 +0,0 @@
-;
-; Maciej 'YTM/Elysium' Witkowiak, 15.07.2001
-;
-;
-; int rand (void);
-; void srand (unsigned seed);
-;
-       .export         _rand, _srand
-       .include        "../inc/jumptab.inc"
-
-.code
-
-_rand:
-       jsr GetRandom
-       pha
-       jsr GetRandom
-       tax
-       pla
-_srand:
-       rts