[BACK]Return to cpu.h CVS log [TXT][DIR] Up to [local] / funnyos / sys

Annotation of funnyos/sys/cpu.h, Revision 1.1.1.1

1.1       init        1: /*
                      2:  * $Id: cpu.h,v 1.1.1.1 2007/10/12 08:40:38 init Exp $
                      3:  */
                      4: #ifndef _SYS_CPU_H
                      5: #define _SYS_CPU_H
                      6:
                      7: /*
                      8:  * CPU capabilities.
                      9:  */
                     10: /* TODO when CPU identification will work */
                     11: #define CPU_HAVE_ICACHE        0x00000001
                     12: #define CPU_HAVE_DCACHE        0x00000002
                     13: #define CPU_HAVE_MMU           0x00000004
                     14:
                     15:
                     16: struct cpu_dd {
                     17:        uint32_t        cpu_freq;
                     18:        char            *cpu_name;
                     19:        uint32_t        cpu_flags;
                     20: };
                     21:
                     22: #endif /* _SYS_CPU_H */
                     23:

CVSweb