Subversion Repositories HelenOS

Rev

Rev 2131 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 2131 Rev 2189
Line 1... Line 1...
1
/*
1
/*
2
 * Copyright (c) 2003-2004 Jakub Jermar
2
 * Copyright (c) 2007 Michal Kebrt
3
 * All rights reserved.
3
 * All rights reserved.
4
 *
4
 *
5
 * Redistribution and use in source and binary forms, with or without
5
 * Redistribution and use in source and binary forms, with or without
6
 * modification, are permitted provided that the following conditions
6
 * modification, are permitted provided that the following conditions
7
 * are met:
7
 * are met:
Line 37... Line 37...
37
 
37
 
38
#include <arch/types.h>
38
#include <arch/types.h>
39
#include <arch/asm.h>
39
#include <arch/asm.h>
40
 
40
 
41
typedef struct {
41
typedef struct {
-
 
42
    /** Implementator (vendor) number */
-
 
43
    uint32_t    imp_num;
-
 
44
    /** Variant number */
-
 
45
    uint32_t    variant_num;
-
 
46
    /** Architecture number */
-
 
47
    uint32_t    arch_num;
-
 
48
    /** Primary part number */
-
 
49
    uint32_t    prim_part_num;
-
 
50
    /** Revision number */
-
 
51
    uint32_t    rev_num;
42
} cpu_arch_t;
52
} cpu_arch_t;
-
 
53
 
43
   
54
   
44
#endif
55
#endif
45
 
56
 
46
/** @}
57
/** @}
47
 */
58
 */