]> git.sur5r.net Git - cc65/commitdiff
Make the read vector __fastcall__
authorcuz <cuz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Tue, 3 Dec 2002 22:31:19 +0000 (22:31 +0000)
committercuz <cuz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Tue, 3 Dec 2002 22:31:19 +0000 (22:31 +0000)
git-svn-id: svn://svn.cc65.org/cc65/trunk@1712 b7a2c559-68d2-44c3-8de9-860c34a00d81

include/modload.h

index 492b5b4019cd0cc77e2f7ea0cf5f867326470773..67d79ecec5aa67fea129d74dfaa430cbb9580d39 100644 (file)
@@ -61,7 +61,7 @@ struct mod_ctrl {
      * NOTE: read() is designed so that the POSIX read() routine can be used
      * for this vector, if you're loading from disk.
      */
-    int               (*read) (int callerdata, void* buffer, unsigned count);
+    int __fastcall__  (*read) (int callerdata, void* buffer, unsigned count);
     int               callerdata;
 
     /* Parameters set by the loader routine */