From c9cbeced5b3f2bdd7407e29c0811e65954132540 Mon Sep 17 00:00:00 2001 From: Root THC Date: Tue, 24 Feb 2026 12:42:47 +0000 Subject: initial --- .../Kermit/doc/API_doc/html/arch_8hpp-source.html | 47 ++++++++++++++++++++++ 1 file changed, 47 insertions(+) create mode 100644 other/Kermit/doc/API_doc/html/arch_8hpp-source.html (limited to 'other/Kermit/doc/API_doc/html/arch_8hpp-source.html') diff --git a/other/Kermit/doc/API_doc/html/arch_8hpp-source.html b/other/Kermit/doc/API_doc/html/arch_8hpp-source.html new file mode 100644 index 0000000..dc30330 --- /dev/null +++ b/other/Kermit/doc/API_doc/html/arch_8hpp-source.html @@ -0,0 +1,47 @@ + + +arch.hpp Source File + + + +
+Main Page   Compound List   File List   Compound Members  
+

arch.hpp

00001 /* 
+00002  * maybe used for porting ...
+00003  * (ignore this file.)
+00004  */
+00005 #ifdef __ALWAYS_UNDEFINED
+00006 template <class Ad_t, bool BE, unsigned short A>
+00007 class Architecture
+00008 {
+00009 private:
+00010   le_replace (unsigned char *, AddressType);
+00011   be_replace (unsigned char *, AddressType);
+00012 
+00013 public:
+00014   typedef Ad_t  AddressType;    /* type capable for holding a memory address as integer */
+00015   bool BigEndian;               /* true if machine uses big endian */
+00016   unsigned short Align;         /* data alignment - needed? (sanity checks) */
+00017 
+00018   Architecture ()
+00019   {
+00020     BigEndian = BE;
+00021     Align = A;
+00022   }
+00023 
+00024   replaceAddress  (unsigned char *, AddressType);
+00025 };
+00026 
+00027 
+00028 Architecture<unsigned int, false, 4>    x86;
+00029 // ...
+00030 
+00031 #define x86     this_arch;
+00032 #endif
+

Generated at Tue Aug 14 18:04:51 2001 for Kermit by + +doxygen1.2.9.1 written by Dimitri van Heesch, + © 1997-2001
+ + -- cgit v1.3