Array
(
    [content] => 
    [params] => Array
        (
            [0] => /forum/index.php?help/bb-codes/
        )

    [addOns] => Array
        (
            [DL6/MLTP] => 13
            [Hampel/TimeZoneDebug] => 1000070
            [SV/ChangePostDate] => 2010200
            [SemiWiki/Newsletter] => 1000010
            [SemiWiki/WPMenu] => 1000010
            [SemiWiki/XPressExtend] => 1000010
            [ThemeHouse/XLink] => 1000970
            [ThemeHouse/XPress] => 1010570
            [XF] => 2021370
            [XFI] => 1050270
        )

    [wordpress] => /var/www/html
)

BB codes

  • [B], [I], [U], [S] - Bold, italics, underline, and strike-through

    Makes the wrapped text bold, italic, underlined, or struck-through.
    Example:
    This is [B]bold[/B] text.
    This is [I]italic[/I] text.
    This is [U]underlined[/U] text.
    This is [S]struck-through[/S] text.
    Output:
    This is bold text.
    This is italic text.
    This is underlined text.
    This is struck-through text.
  • [COLOR=color], [FONT=name], [SIZE=size] - Text Color, Font, and Size

    Changes the color, font, or size of the wrapped text.
    Example:
    This is [COLOR=red]red[/COLOR] and [COLOR=#0000cc]blue[/COLOR] text.
    This is [FONT=Courier New]Courier New[/FONT] text.
    This is [SIZE=1]small[/SIZE] and [SIZE=7]big[/SIZE] text.
    Output:
    This is red and blue text.
    This is Courier New text.
    This is small and big text.
  • [URL], [EMAIL] - Linking

    Creates a link using the wrapped text as the target.
    Example:
    [URL]https://www.example.com[/URL]
    [EMAIL]example@example.com[/EMAIL]
    Output:
  • [URL=link], [EMAIL=address] - Linking (Advanced)

    Links the wrapped text to the specified web page or email address.
    Example:
    [URL=https://www.example.com]Go to example.com[/URL]
    [EMAIL=example@example.com]Email me[/EMAIL]
    Output:
  • [USER=ID] - Profile Linking

    Links to a user's profile. This is generally inserted automatically when mentioning a user.
    Example:
    [USER=1]Username[/USER]
    Output:
  • [IMG] - Image

    Display an image, using the wrapped text as the URL.
    Example:
    [IMG]/wp-content/themes/semiwiki/assets/images/semiwiki.png[/IMG]
    Output:
    /wp-content/themes/semiwiki/assets/images/semiwiki.png
  • [MEDIA=site] - Embedded Media

    Embeds media from approved sites into your message. It is recommended that you use the media button in the editor tool bar.
    Approved sites: Apple Music, Dailymotion, Facebook, Flickr, Giphy, Imgur, Instagram, Pinterest, Reddit, SoundCloud, Spotify, TikTok, Tumblr, Twitch, Twitter, Vimeo, YouTube
    Example:
    [MEDIA=youtube]kQ0Eo1UccEE[/MEDIA]
    Output:
    An embedded YouTube player would appear here.
  • [LIST] - Lists

    Displays a bulleted or numbered list.
    Example:
    [LIST]
    [*]Bullet 1
    [*]Bullet 2
    [/LIST]
    [LIST=1]
    [*]Entry 1
    [*]Entry 2
    [/LIST]
    Output:
    • Bullet 1
    • Bullet 2
    1. Entry 1
    2. Entry 2
  • [LEFT], [CENTER], [RIGHT] - Text alignment

    Changes the alignment of the wrapped text.
    Example:
    [LEFT]Left-aligned[/LEFT]
    [CENTER]Center-aligned[/CENTER]
    [RIGHT]Right-aligned[/RIGHT]
    Output:
    Left-aligned​
    Center-aligned​
    Right-aligned​
  • [QUOTE] - Quoted text

    Displays text that has been quoted from another source. You may also attribute the name of the source.
    Example:
    [QUOTE]Quoted text[/QUOTE]
    [QUOTE=A person]Something they said[/QUOTE]
    Output:
    Quoted text
    A person said:
    Something they said
  • [SPOILER] - Text containing spoilers

    Hides text that may contain spoilers so that it must be clicked by the viewer to be seen.
    Example:
    [SPOILER]Simple spoiler[/SPOILER]
    [SPOILER=Spoiler Title]Spoiler with a title[/SPOILER]
    Output:
    Simple spoiler
    Spoiler with a title
  • [ISPOILER] - Inline text containing spoilers

    Allows you to display text inline among normal content which hides text that may contain spoilers and must be clicked by the viewer to be seen.
    Example:
    You have to click the following [ISPOILER]word[/ISPOILER] to see the content.
    Output:
    You have to click the following word to see the content.
  • [CODE] - Programming code display

    Displays text in one of several programming languages, highlighting the syntax where possible.
    Example:
    General code:
    [CODE]General
    code[/CODE]

    Rich code:
    [CODE=rich][COLOR=red]Rich[/COLOR]
    code[/CODE]

    PHP code:
    [CODE=php]echo $hello . ' world';[/CODE]

    JS code:
    [CODE=javascript]var hello = 'world';[/CODE]
    Output:
    General code:
    Code:
    General
    code

    Rich code:
    Rich (BB code):
    Rich
    code

    PHP code:
    PHP:
    echo $hello . ' world';

    JS code:
    JavaScript:
    var hello = 'world';
  • [ICODE] - Inline programming code display

    Allows you to display code inline among normal post content. Syntax will not be highlighted.
    Example:
    Inline code sections [ICODE]are a convenient way[/ICODE] of displaying code inline.

    Rich formatting within inline code sections [ICODE=rich]is [COLOR=red]also[/COLOR] [U]supported[/U][/ICODE].
    Output:
    Inline code sections are a convenient way of displaying code inline.

    Rich formatting within inline code sections is also supported.
  • [INDENT] - Text indent

    Indents the wrapped text. This can be nested for larger indentings.
    Example:
    Regular text
    [INDENT]Indented text[/INDENT]
    [INDENT=2]More indented[/INDENT]
    Output:
    Regular text
    Indented text​
    More indented​
  • [TABLE] - Tables

    Special markup to display tables in your content.
    Example:
    [TABLE]
    [TR]
    [TH]Header 1[/TH]
    [TH]Header 2[/TH]
    [/TR]
    [TR]
    [TD]Content 1[/TD]
    [TD]Content 2[/TD]
    [/TR]
    [/TABLE]
    Output:
    [table]
    [TR]
    [TH]Header 1[/TH]
    [TH]Header 2[/TH]
    [/TR]
    [TR]
    [TD]Content 1[/TD]
    [TD]Content 2[/TD]
    [/TR]
    [/table]
  • [HEADING=level] - Headings levels 1 to 3

    Marks text as a structured heading to facilitate machine readability.
    Example:
    [HEADING=1]Major heading[/HEADING]
    This text comes under a major heading, used to separate the primary sections of an article.

    [HEADING=2]Minor heading[/HEADING]
    When you need to subdivide the primary sections of an article, use a level 2 minor heading.

    [HEADING=3]Subheading[/HEADING]
    If you require additional subdivision, you may drop to level 3.
    Output:

    Major heading​

    This text comes under a major heading, used to separate the primary sections of an article.

    Minor heading​

    When you need to subdivide the primary sections of an article, use a level 2 minor heading.

    Subheading​

    If you require additional subdivision, you may drop to level 3.
  • [PLAIN] - Plain text

    Disables BB code translation on the wrapped text.
    Example:
    [PLAIN]This is not [B]bold[/B] text.[/PLAIN]
    Output:
    This is not [B]bold[/B] text.
  • [ATTACH] - Attachment insertion

    Inserts an attachment at the specified point. If the attachment is an image, a thumbnail or full size version will be inserted. This will generally be inserted by clicking the appropriate button.
    Example:
    Thumbnail: [ATTACH]123[/ATTACH]
    Full size: [ATTACH=full]123[/ATTACH]
    Output:
    The contents of the attachments would appear here.
  • [ACHRONIX] - Achronix

    custom_bb_code_desc.achronix
    Example:
    [achronix=Example]Click here to view this page![/achronix]
    Output:
    custom_bb_code_output.achronix
  • [ADESTO_TECHNOLOGIES] - Adesto Technologies

    custom_bb_code_desc.adesto_technologies
    Example:
    [adesto_technologies=Example]Click here to view this page![/adesto_technologies]
    Output:
    custom_bb_code_output.adesto_technologies
  • [AGO] - AgO

    custom_bb_code_desc.ago
    Example:
    [ago=Example]Click here to view this page![/ago]
    Output:
    custom_bb_code_output.ago
  • [ALDEC] - Aldec

    custom_bb_code_desc.aldec
    Example:
    [aldec=Example]Click here to view this page![/aldec]
    Output:
    custom_bb_code_output.aldec
  • [ANALOG_BITS] - Analog Bits

    custom_bb_code_desc.analog_bits
    Example:
    [analog_bits=Example]Click here to view this page![/analog_bits]
    Output:
    custom_bb_code_output.analog_bits
  • [ANDES_TECHNOLOGY] - Andes Technology

    custom_bb_code_desc.andes_technology
    Example:
    [andes_technology=Example]Click here to view this page![/andes_technology]
    Output:
    custom_bb_code_output.andes_technology
  • [ANSYS_INC] - ANSYS, Inc.

    custom_bb_code_desc.ansys_inc
    Example:
    [ansys_inc=Example]Click here to view this page![/ansys_inc]
    Output:
    custom_bb_code_output.ansys_inc
  • [ARASAN] - Arasan

    custom_bb_code_desc.arasan
    Example:
    [arasan=Example]Click here to view this page![/arasan]
    Output:
    custom_bb_code_output.arasan
  • [ARM] - ARM

    custom_bb_code_desc.arm
    Example:
    [arm=Example]Click here to view this page![/arm]
    Output:
    custom_bb_code_output.arm
  • [ARTERIS] - Arteris

    custom_bb_code_desc.arteris
    Example:
    [arteris=Example]Click here to view this page![/arteris]
    Output:
    custom_bb_code_output.arteris
  • [ATMEL] - Atmel

    custom_bb_code_desc.atmel
    Example:
    [atmel=Example]Click here to view this page![/atmel]
    Output:
    custom_bb_code_output.atmel
  • [ATRENTA] - Atrenta

    custom_bb_code_desc.atrenta
    Example:
    [atrenta=Example]Click here to view this page![/atrenta]
    Output:
    custom_bb_code_output.atrenta
  • [AUTOESL] - AutoESL

    custom_bb_code_desc.autoesl
    Example:
    [autoesl=Example]Click here to view this page![/autoesl]
    Output:
    custom_bb_code_output.autoesl
  • [AVATAR_INTEGRATED_SYSTEMS] - Avatar Integrated Systems

    custom_bb_code_desc.avatar_integrated_systems
    Example:
    [avatar_integrated_systems=Example]Click here to view this page![/avatar_integrated_systems]
    Output:
    custom_bb_code_output.avatar_integrated_systems
  • [BLENDICS] - Blendics

    custom_bb_code_desc.blendics
    Example:
    [blendics=Example]Click here to view this page![/blendics]
    Output:
    custom_bb_code_output.blendics
  • [BLUE_PEARL_SOFTWARE] - Blue Pearl Software

    custom_bb_code_desc.blue_pearl_software
    Example:
    [blue_pearl_software=Example]Click here to view this page![/blue_pearl_software]
    Output:
    custom_bb_code_output.blue_pearl_software
  • [CADENCE] - Cadence

    custom_bb_code_desc.cadence
    Example:
    [cadence=Example]Click here to view this page![/cadence]
    Output:
    custom_bb_code_output.cadence
  • [CALYPTO] - Calypto

    custom_bb_code_desc.calypto
    Example:
    [calypto=Example]Click here to view this page![/calypto]
    Output:
    custom_bb_code_output.calypto
  • [CARBON_DESIGN_SYSTEMS] - Carbon Design Systems

    custom_bb_code_desc.carbon_design_systems
    Example:
    [carbon_design_systems=Example]Click here to view this page![/carbon_design_systems]
    Output:
    custom_bb_code_output.carbon_design_systems
  • [CASPA] - CASPA

    custom_bb_code_desc.caspa
    Example:
    [caspa=Example]Click here to view this page![/caspa]
    Output:
    custom_bb_code_output.caspa
  • [CAST] - CAST

    custom_bb_code_desc.cast
    Example:
    [cast=Example]Click here to view this page![/cast]
    Output:
    custom_bb_code_output.cast
  • [CATEGORY1] - Legacy Category Tag

    custom_bb_code_desc.category1
    Example:
    [category]Example[/category]
    Output:
    custom_bb_code_output.category1
  • [CEVA] - CEVA

    custom_bb_code_desc.ceva
    Example:
    [ceva=Example]Click here to view this page![/ceva]
    Output:
    custom_bb_code_output.ceva
  • [CHIPSTART] - ChipStart

    custom_bb_code_desc.chipstart
    Example:
    [chipstart=Example]Click here to view this page![/chipstart]
    Output:
    custom_bb_code_output.chipstart
  • [CIRANOVA] - Ciranova

    custom_bb_code_desc.ciranova
    Example:
    [ciranova=Example]Click here to view this page![/ciranova]
    Output:
    custom_bb_code_output.ciranova
  • [CLIOSOFT] - ClioSoft

    custom_bb_code_desc.cliosoft
    Example:
    [cliosoft=Example]Click here to view this page![/cliosoft]
    Output:
    custom_bb_code_output.cliosoft
  • [CLK_DESIGN_AUTOMATION] - CLK Design Automation

    custom_bb_code_desc.clk_design_automation
    Example:
    [clk_design_automation=Example]Click here to view this page![/clk_design_automation]
    Output:
    custom_bb_code_output.clk_design_automation
  • [CONCEPT_ENGINEERING_GMBH] - Concept Engineering GmbH

    custom_bb_code_desc.concept_engineering_gmbh
    Example:
    [concept_engineering_gmbh=Example]Click here to view this page![/concept_engineering_gmbh]
    Output:
    custom_bb_code_output.concept_engineering_gmbh
  • [CONCEPTTWOSILICON] - Concept2Silicon

    custom_bb_code_desc.concepttwosilicon
    Example:
    [concepttwosilicon=Example]Click here to view this page![/concepttwosilicon]
    Output:
    custom_bb_code_output.concepttwosilicon
  • [CONSENSIA] - Consensia

    custom_bb_code_desc.consensia
    Example:
    [consensia=Example]Click here to view this page![/consensia]
    Output:
    custom_bb_code_output.consensia
  • [COSMIC_CIRCUITS] - Cosmic Circuits

    custom_bb_code_desc.cosmic_circuits
    Example:
    [cosmic_circuits=Example]Click here to view this page![/cosmic_circuits]
    Output:
    custom_bb_code_output.cosmic_circuits
  • [COVENTOR] - Coventor

    custom_bb_code_desc.coventor
    Example:
    [coventor=Example]Click here to view this page![/coventor]
    Output:
    custom_bb_code_output.coventor
  • [DASSAULT_SYSTEMES] - Dassault Systemes

    custom_bb_code_desc.dassault_systemes
    Example:
    [dassault_systemes=Example]Click here to view this page![/dassault_systemes]
    Output:
    custom_bb_code_output.dassault_systemes
  • [DEFACTO_TECHNOLOGIES] - Defacto Technologies

    custom_bb_code_desc.defacto_technologies
    Example:
    [defacto_technologies=Example]Click here to view this page![/defacto_technologies]
    Output:
    custom_bb_code_output.defacto_technologies
  • [DOCEA_POWER] - Docea Power

    custom_bb_code_desc.docea_power
    Example:
    [docea_power=Example]Click here to view this page![/docea_power]
    Output:
    custom_bb_code_output.docea_power
  • [DOLPHIN] - Dolphin

    custom_bb_code_desc.dolphin
    Example:
    [dolphin=Example]Click here to view this page![/dolphin]
    Output:
    custom_bb_code_output.dolphin
  • [DOLPHIN_INTEGRATION] - Dolphin Integration

    custom_bb_code_desc.dolphin_integration
    Example:
    [dolphin_integration=Example]Click here to view this page![/dolphin_integration]
    Output:
    custom_bb_code_output.dolphin_integration
  • [EFABLESS] - efabless

    custom_bb_code_desc.efabless
    Example:
    [efabless=Example]Click here to view this page![/efabless]
    Output:
    custom_bb_code_output.efabless
  • [ELLEXUS] - Ellexus

    custom_bb_code_desc.ellexus
    Example:
    [ellexus=Example]Click here to view this page![/ellexus]
    Output:
    custom_bb_code_output.ellexus
  • [ESILICON] - eSilicon

    custom_bb_code_desc.esilicon
    Example:
    [esilicon=Example]Click here to view this page![/esilicon]
    Output:
    custom_bb_code_output.esilicon
  • [FLEX_LOGIX] - Flex Logix

    custom_bb_code_desc.flex_logix
    Example:
    [flex_logix=Example]Click here to view this page![/flex_logix]
    Output:
    custom_bb_code_output.flex_logix
  • [FORTE_DESIGN_SYSTEMS] - Forte Design Systems

    custom_bb_code_desc.forte_design_systems
    Example:
    [forte_design_systems=Example]Click here to view this page![/forte_design_systems]
    Output:
    custom_bb_code_output.forte_design_systems
  • [FPGA] - FPGA

    custom_bb_code_desc.fpga
    Example:
    [fpga=Example]Click here to view this page![/fpga]
    Output:
    custom_bb_code_output.fpga
  • [FRACTAL_TECHNOLOGIES] - Fractal Technologies

    custom_bb_code_desc.fractal_technologies
    Example:
    [fractal_technologies=Example]Click here to view this page![/fractal_technologies]
    Output:
    custom_bb_code_output.fractal_technologies
  • [GLOBAL_UNICHIP_CORP] - Global Unichip Corp.

    custom_bb_code_desc.global_unichip_corp
    Example:
    [global_unichip_corp=Example]Click here to view this page![/global_unichip_corp]
    Output:
    custom_bb_code_output.global_unichip_corp
  • [GLOBALFOUNDRIES] - GlobalFoundries

    custom_bb_code_desc.globalfoundries
    Example:
    [globalfoundries=Example]Click here to view this page![/globalfoundries]
    Output:
    custom_bb_code_output.globalfoundries
  • [GRANITE_RIVER_LABS] - Granite River Labs

    custom_bb_code_desc.granite_river_labs
    Example:
    [granite_river_labs=Example]Click here to view this page![/granite_river_labs]
    Output:
    custom_bb_code_output.granite_river_labs
  • [HELIC] - Helic

    custom_bb_code_desc.helic
    Example:
    [helic=Example]Click here to view this page![/helic]
    Output:
    custom_bb_code_output.helic
  • [IC_KNOWLEDGE] - IC Knowledge

    custom_bb_code_desc.ic_knowledge
    Example:
    [ic_knowledge=Example]Click here to view this page![/ic_knowledge]
    Output:
    custom_bb_code_output.ic_knowledge
  • [ICSCAPE] - ICScape

    custom_bb_code_desc.icscape
    Example:
    [icscape=Example]Click here to view this page![/icscape]
    Output:
    custom_bb_code_output.icscape
  • [IMAGINATION_TECHNOLOGIES] - Imagination Technologies

    custom_bb_code_desc.imagination_technologies
    Example:
    [imagination_technologies=Example]Click here to view this page![/imagination_technologies]
    Output:
    custom_bb_code_output.imagination_technologies
  • [INTEL] - Intel

    custom_bb_code_desc.intel
    Example:
    [intel=Example]Click here to view this page![/intel]
    Output:
    custom_bb_code_output.intel
  • [INTRINSIX] - Intrinsix

    custom_bb_code_desc.intrinsix
    Example:
    [intrinsix=Example]Click here to view this page![/intrinsix]
    Output:
    custom_bb_code_output.intrinsix
  • [INVARIAN] - Invarian

    custom_bb_code_desc.invarian
    Example:
    [invarian=Example]Click here to view this page![/invarian]
    Output:
    custom_bb_code_output.invarian
  • [IPEXTREME] - IPextreme

    custom_bb_code_desc.ipextreme
    Example:
    [ipextreme=Example]Click here to view this page![/ipextreme]
    Output:
    custom_bb_code_output.ipextreme
  • [IPNEST] - IPnest

    custom_bb_code_desc.ipnest
    Example:
    [ipnest=Example]Click here to view this page![/ipnest]
    Output:
    custom_bb_code_output.ipnest
  • [IROC_TECHNOLOGIES] - IROC Technologies

    custom_bb_code_desc.iroc_technologies
    Example:
    [iroc_technologies=Example]Click here to view this page![/iroc_technologies]
    Output:
    custom_bb_code_output.iroc_technologies
  • [JAMA_SOFTWARE] - Jama Software

    custom_bb_code_desc.jama_software
    Example:
    [jama_software=Example]Click here to view this page![/jama_software]
    Output:
    custom_bb_code_output.jama_software
  • [JASPER] - Jasper DA

    custom_bb_code_desc.jasper
    Example:
    [jasper=Example]Click here to view this page![/jasper]
    Output:
    custom_bb_code_output.jasper
  • [KANDOU_BUS] - Kandou Bus

    custom_bb_code_desc.kandou_bus
    Example:
    [kandou_bus=Example]Click here to view this page![/kandou_bus]
    Output:
    custom_bb_code_output.kandou_bus
  • [KILOPASS_TECHNOLOGY] - Kilopass Technology

    custom_bb_code_desc.kilopass_technology
    Example:
    [kilopass_technology=Example]Click here to view this page![/kilopass_technology]
    Output:
    custom_bb_code_output.kilopass_technology
  • [MAGILLEM] - Magillem

    custom_bb_code_desc.magillem
    Example:
    [magillem=Example]Click here to view this page![/magillem]
    Output:
    custom_bb_code_output.magillem
  • [MAGMA] - Magma DA

    custom_bb_code_desc.magma
    Example:
    [magma=Example]Click here to view this page![/magma]
    Output:
    custom_bb_code_output.magma
  • [MAGWELL] - Magwel

    custom_bb_code_desc.magwell
    Example:
    [magwell=Example]Click here to view this page![/magwell]
    Output:
    custom_bb_code_output.magwell
  • [MENTA] - Menta

    custom_bb_code_desc.menta
    Example:
    [menta=Example]Click here to view this page![/menta]
    Output:
    custom_bb_code_output.menta
  • [MENTOR] - Mentor

    custom_bb_code_desc.mentor
    Example:
    [mentor=Example]Click here to view this page![/mentor]
    Output:
    custom_bb_code_output.mentor
  • [METHODICS] - Methodics

    custom_bb_code_desc.methodics
    Example:
    [methodics=Example]Click here to view this page![/methodics]
    Output:
    custom_bb_code_output.methodics
  • [MIXEL] - Mixel

    custom_bb_code_desc.mixel
    Example:
    [mixel=Example]Click here to view this page![/mixel]
    Output:
    custom_bb_code_output.mixel
  • [MOBIVEIL] - Mobiveil

    custom_bb_code_desc.mobiveil
    Example:
    [mobiveil=Example]Click here to view this page![/mobiveil]
    Output:
    custom_bb_code_output.mobiveil
  • [MOORTEC] - Moortec

    custom_bb_code_desc.moortec
    Example:
    [moortec=Example]Click here to view this page![/moortec]
    Output:
    custom_bb_code_output.moortec
  • [MORE_THAN_IP] - More Than IP

    custom_bb_code_desc.more_than_ip
    Example:
    [more_than_ip=Example]Click here to view this page![/more_than_ip]
    Output:
    custom_bb_code_output.more_than_ip
  • [MOSIS] - MOSIS

    custom_bb_code_desc.mosis
    Example:
    [mosis=Example]Click here to view this page![/mosis]
    Output:
    custom_bb_code_output.mosis
  • [MOSYS] - Mosys

    custom_bb_code_desc.mosys
    Example:
    [mosys=Example]Click here to view this page![/mosys]
    Output:
    custom_bb_code_output.mosys
  • [MUNEDA] - MunEDA

    custom_bb_code_desc.muneda
    Example:
    [muneda=Example]Click here to view this page![/muneda]
    Output:
    custom_bb_code_output.muneda
  • [NANGATE] - NanGate

    custom_bb_code_desc.nangate
    Example:
    [nangate=Example]Click here to view this page![/nangate]
    Output:
    custom_bb_code_output.nangate
  • [NESTPEED_SYSTEMS] - NetSpeed Systems

    custom_bb_code_desc.nestpeed_systems
    Example:
    [nestpeed_systems=Example]Click here to view this page![/nestpeed_systems]
    Output:
    custom_bb_code_output.nestpeed_systems
  • [NOSTATE] - No State

    custom_bb_code_desc.nostate
    Example:
    [nostate][b]Bold text[/b][/nostate]
    Output:
    custom_bb_code_output.nostate
  • [NOVOCELL_SEMICONDUCTOR] - Novocell Semiconductor

    custom_bb_code_desc.novocell_semiconductor
    Example:
    [novocell_semiconductor=Example]Click here to view this page![/novocell_semiconductor]
    Output:
    custom_bb_code_output.novocell_semiconductor
  • [OASYS] - Oasys

    custom_bb_code_desc.oasys
    Example:
    [oasys=Example]Click here to view this page![/oasys]
    Output:
    custom_bb_code_output.oasys
  • [OPEN_SILICON] - Open-Silicon

    custom_bb_code_desc.open_silicon
    Example:
    [open_silicon=Example]Click here to view this page![/open_silicon]
    Output:
    custom_bb_code_output.open_silicon
  • [OSKI_TECHNOLOGY] - Oski Technology

    custom_bb_code_desc.oski_technology
    Example:
    [oski_technology=Example]Click here to view this page![/oski_technology]
    Output:
    custom_bb_code_output.oski_technology
  • [PERFECTVIPS] - PerfectVIPs

    custom_bb_code_desc.perfectvips
    Example:
    [perfectvips=Example]Click here to view this page![/perfectvips]
    Output:
    custom_bb_code_output.perfectvips
  • [POLYTEDA] - Polyteda

    custom_bb_code_desc.polyteda
    Example:
    [polyteda=Example]Click here to view this page![/polyteda]
    Output:
    custom_bb_code_output.polyteda
  • [PRESTO_ENGINEERING] - Presto Engineering

    custom_bb_code_desc.presto_engineering
    Example:
    [presto_engineering=Example]Click here to view this page![/presto_engineering]
    Output:
    custom_bb_code_output.presto_engineering
  • [PROPLUS_DESIGN] - ProPlus Design

    custom_bb_code_desc.proplus_design
    Example:
    [proplus_design=Example]Click here to view this page![/proplus_design]
    Output:
    custom_bb_code_output.proplus_design
  • [PROPLUS_DESIGN_SOLUTIONS] - ProPlus Design Solutions

    custom_bb_code_desc.proplus_design_solutions
    Example:
    [proplus_design_solutions=Example]Click here to view this page![/proplus_design_solutions]
    Output:
    custom_bb_code_output.proplus_design_solutions
  • [PULSIC] - Pulsic

    custom_bb_code_desc.pulsic
    Example:
    [pulsic=Example]Click here to view this page![/pulsic]
    Output:
    custom_bb_code_output.pulsic
  • [QUICKLOGIC] - QuickLogic

    custom_bb_code_desc.quicklogic
    Example:
    [quicklogic=Example]Click here to view this page![/quicklogic]
    Output:
    custom_bb_code_output.quicklogic
  • [REDIRECT] - Redirect

    custom_bb_code_desc.redirect
    Example:
    [redirect]Redirect Page[/redirect]
    Output:
    custom_bb_code_output.redirect
  • [RULEDECK] - RuleDeck

    custom_bb_code_desc.ruledeck
    Example:
    [ruledeck=Example]Click here to view this page![/ruledeck]
    Output:
    custom_bb_code_output.ruledeck
  • [RUNTIME_DESIGN_AUTOMATION] - Runtime Design Automation

    custom_bb_code_desc.runtime_design_automation
    Example:
    [runtime_design_automation=Example]Click here to view this page![/runtime_design_automation]
    Output:
    custom_bb_code_output.runtime_design_automation
  • [SAGANTEC] - Sagantec

    custom_bb_code_desc.sagantec
    Example:
    [sagantec=Example]Click here to view this page![/sagantec]
    Output:
    custom_bb_code_output.sagantec
  • [SAGE_DA] - Sage DA

    custom_bb_code_desc.sage_da
    Example:
    [sage_da=Example]Click here to view this page![/sage_da]
    Output:
    custom_bb_code_output.sage_da
  • [SAMSUNG_FOUNDRY] - Samsung Foundry

    custom_bb_code_desc.samsung_foundry
    Example:
    [samsung_foundry=Example]Click here to view this page![/samsung_foundry]
    Output:
    custom_bb_code_output.samsung_foundry
  • [SEMI] - SEMI

    custom_bb_code_desc.semi
    Example:
    [semi=Example]Click here to view this page![/semi]
    Output:
    custom_bb_code_output.semi
  • [SEMICONDUCTOR_ADVISORS] - Semiconductor Advisors

    custom_bb_code_desc.semiconductor_advisors
    Example:
    [semiconductor_advisors=Example]Click here to view this page![/semiconductor_advisors]
    Output:
    custom_bb_code_output.semiconductor_advisors
  • [SEMITRACKS] - Semitracks

    custom_bb_code_desc.semitracks
    Example:
    [semitracks=Example]Click here to view this page![/semitracks]
    Output:
    custom_bb_code_output.semitracks
  • [SEMIWIKI] - Industry Wikis

    custom_bb_code_desc.semiwiki
    Example:
    [semiwiki=Example]Click here to view this page![/semiwiki]
    Output:
    custom_bb_code_output.semiwiki
  • [SEMIWIKI_BOOK_DOWNLOAD] - SemiWiki Book Download

    custom_bb_code_desc.semiwiki_book_download
    Example:
    [semiwiki_book_download=Example]Click here to view this page![/semiwiki_book_download]
    Output:
    custom_bb_code_output.semiwiki_book_download
  • [SIDENSE] - Sidense

    custom_bb_code_desc.sidense
    Example:
    [sidense=Example]Click here to view this page![/sidense]
    Output:
    custom_bb_code_output.sidense
  • [SIFIVE] - SiFive

    custom_bb_code_desc.sifive
    Example:
    [sifive=Example]Click here to view this page![/sifive]
    Output:
    custom_bb_code_output.sifive
  • [SIGASI] - Sigasi

    custom_bb_code_desc.sigasi
    Example:
    [sigasi=Example]Click here to view this page![/sigasi]
    Output:
    custom_bb_code_output.sigasi
  • [SILABTECH] - SilabTech

    custom_bb_code_desc.silabtech
    Example:
    [silabtech=Example]Click here to view this page![/silabtech]
    Output:
    custom_bb_code_output.silabtech
  • [SILICON_CREATIONS] - Silicon Creations

    custom_bb_code_desc.silicon_creations
    Example:
    [silicon_creations=Example]Click here to view this page![/silicon_creations]
    Output:
    custom_bb_code_output.silicon_creations
  • [SILICON_FRONTLINE] - Silicon Frontline

    custom_bb_code_desc.silicon_frontline
    Example:
    [silicon_frontline=Example]Click here to view this page![/silicon_frontline]
    Output:
    custom_bb_code_output.silicon_frontline
  • [SILVACO] - Silvaco

    custom_bb_code_desc.silvaco
    Example:
    [silvaco=Example]Click here to view this page![/silvaco]
    Output:
    custom_bb_code_output.silvaco
  • [SITE] - Site

    custom_bb_code_desc.site
    Example:
    [site=Example]Click here to view this page![/site]
    Output:
    custom_bb_code_output.site
  • [SMARTDV] - SmartDV

    custom_bb_code_desc.smartdv
    Example:
    [smartdv=Example]Click here to view this page![/smartdv]
    Output:
    custom_bb_code_output.smartdv
  • [SMIC] - SMIC

    custom_bb_code_desc.smic
    Example:
    [smic=Example]Click here to view this page![/smic]
    Output:
    custom_bb_code_output.smic
  • [SOLIDO] - Solido

    custom_bb_code_desc.solido
    Example:
    [solido=Example]Click here to view this page![/solido]
    Output:
    custom_bb_code_output.solido
  • [SONICS] - Sonics

    custom_bb_code_desc.sonics
    Example:
    [sonics=Example]Click here to view this page![/sonics]
    Output:
    custom_bb_code_output.sonics
  • [SPECIAL] - Special

    custom_bb_code_desc.special
    Example:
    [special=Specialpages]Specialpages[/special]
    Output:
    custom_bb_code_output.special
  • [SPRINGSOFT] - SpringSoft

    custom_bb_code_desc.springsoft
    Example:
    [springsoft=Example]Click here to view this page![/springsoft]
    Output:
    custom_bb_code_output.springsoft
  • [STMICROELECTRONICS] - STMicroelectronics

    custom_bb_code_desc.stmicroelectronics
    Example:
    [stmicroelectronics=Example]Click here to view this page![/stmicroelectronics]
    Output:
    custom_bb_code_output.stmicroelectronics
  • [STWOC] - S2C

    custom_bb_code_desc.stwoc
    Example:
    [stwoc=Example]Click here to view this page![/stwoc]
    Output:
    custom_bb_code_output.stwoc
  • [SYNOPSYS] - Synopsys

    custom_bb_code_desc.synopsys
    Example:
    [synopsys=Example]Click here to view this page![/synopsys]
    Output:
    custom_bb_code_output.synopsys
  • [TABLE] - Table

    custom_bb_code_desc.table
    Example:
    [table]border="1"[/table]
    Output:
    custom_bb_code_output.table
  • [TANNER] - Tanner EDA

    custom_bb_code_desc.tanner
    Example:
    [tanner=Example]Click here to view this page![/tanner]
    Output:
    custom_bb_code_output.tanner
  • [TEKTRONIX] - Tektronix

    custom_bb_code_desc.tektronix
    Example:
    [tektronix=Example]Click here to view this page![/tektronix]
    Output:
    custom_bb_code_output.tektronix
  • [TENSILICA] - Tensilica

    custom_bb_code_desc.tensilica
    Example:
    [tensilica=Example]Click here to view this page![/tensilica]
    Output:
    custom_bb_code_output.tensilica
  • [TSMC] - TSMC

    custom_bb_code_desc.tsmc
    Example:
    [tsmc=Example]Click here to view this page![/tsmc]
    Output:
    custom_bb_code_output.tsmc
  • [UMC] - UMC

    custom_bb_code_desc.umc
    Example:
    [umc=Example]Click here to view this page![/umc]
    Output:
    custom_bb_code_output.umc
  • [VERISILICON] - VeriSilicon

    custom_bb_code_desc.verisilicon
    Example:
    [verisilicon=Example]Click here to view this page![/verisilicon]
    Output:
    custom_bb_code_output.verisilicon
  • [ZENTERA] - Zentera

    custom_bb_code_desc.zentera
    Example:
    [zentera=Example]Click here to view this page![/zentera]
    Output:
    custom_bb_code_output.zentera
Back
Top