__init__.py (5081:2ccce8600a9d) __init__.py (5659:f4b9c344d1ca)
1# Copyright (c) 2007 The Hewlett-Packard Development Company
2# All rights reserved.
3#
4# Redistribution and use of this software in source and binary forms,
5# with or without modification, are permitted provided that the
6# following conditions are met:
7#
8# The software must be used only for Non-Commercial Use which means any

--- 51 unchanged lines hidden (view full) ---

60 "data_conversion",
61 "data_transfer",
62 "flags",
63 "input_output",
64 "load_effective_address",
65 "load_segment_registers",
66 "logical",
67 "no_operation",
1# Copyright (c) 2007 The Hewlett-Packard Development Company
2# All rights reserved.
3#
4# Redistribution and use of this software in source and binary forms,
5# with or without modification, are permitted provided that the
6# following conditions are met:
7#
8# The software must be used only for Non-Commercial Use which means any

--- 51 unchanged lines hidden (view full) ---

60 "data_conversion",
61 "data_transfer",
62 "flags",
63 "input_output",
64 "load_effective_address",
65 "load_segment_registers",
66 "logical",
67 "no_operation",
68 "processor_information",
69 "rotate_and_shift",
70 "semaphores",
71 "string",
72 "system_calls"]
73
74microcode = '''
75# Microcode for general purpose instructions
76'''
77for category in categories:
78 exec "import %s as cat" % category
79 microcode += cat.microcode
68 "rotate_and_shift",
69 "semaphores",
70 "string",
71 "system_calls"]
72
73microcode = '''
74# Microcode for general purpose instructions
75'''
76for category in categories:
77 exec "import %s as cat" % category
78 microcode += cat.microcode